回 帖 发 新 帖 刷新版面

主题:关于r  g  b分离的几道题!

1.如何用matlab把图片的r g b颜色分离?

2.Determine the mean and standard deviation of the pixel intensities in each component image. Print out the results

3.after determining the mean and standard deviation of each component image,
display each color component (in separate  gure windows) as a surface. Put appropriate titles
on each surface  gure window. Apply a di erent colormap to each surface. Apply shading
and lighting to each surface (consult the matlab online documentation, or DIP using Matlab
to learn how to do this).

回复列表 (共5个回复)

沙发

可有偿提供代码解决方案

板凳

跟帖~~~~~~~~

3 楼


可以用Photoship分离

4 楼

先用imread把图形转成三维距阵.比如命名为image 
再用
   r=image(:,:,1);
   g=image(:,:,2);
   b=image(:,:,3);
即可分离出来

5 楼

楼上正解

我来回复

您尚未登录,请登录后再回复。点此登录或注册