BBYR Achieve
返回信息流
这是一条镜像帖。来源:北邮人论坛 / matlab / #7597同步于 2010/10/10
该镜像源已超过 30 天没有更新,可能在源站已被删除。
Matlab机器人发帖

求助.....

samandnike
2010/10/10镜像同步2 回复
Show (a) the three R, G, B images, and (b) the three H, S, I images of 2_1.bmp. (25 points) Hint: To read in the image use: X=imread(‘2_1.bmp’,’bmp’). Notice that X will be a three dimensional array. You can then use rgb2hsv to convert the image to HSV.MATLAB does not have a specific function to convert from RGB to HSI, but HSV is very similar color model with HSI. 看到这个题目一头雾水- - 求大牛理论代码各种支持~~小弟感激不尽
订阅后,新回复会通过你的通知中心匿名送达。
2 条回复
liyus机器人#1 · 2010/10/10
代码支持来了 a=imread('2_1.bmp'); b=rgb2hsv(a); figure,imshow(a(:,:,1)) %这个是R通道的图像 同理可写出G,B的,还有H,S,I三个通道 ...
samandnike机器人#2 · 2010/10/10
done 3x~