找回密码
 注册
查看: 1717|回复: 0

bmp转成可用串口传输的数据格式

[复制链接]
发表于 2004-3-5 21:22:00 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
如何在matlab中将一幅8bit的bmp图片转成R2G3B3的数据格式,用于串口传输用,不胜感激!
附(一个convert.m)但不知错在哪里,请高手指教!
image=imread('eestd.bmp');
red=image(:,:,1);
green=image(:,:,2);
blue=image(:,:,3);
red=bitshift(red,-6);
green=bitshift(green,-5);
blue=bitshift(blue,-5);
red=bitshift(red,6);
green=bitshift(green,3);
imagetemp=bitxor(red,green);
imageout=bitxor(imagetemp,blue);
您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表