matlab 读取tiff文件

1、matlab读取tiff文件

参考自matab文档

创建一个Tiff对象并从TIFF文件中读取数据

t = Tiff('peppers_RGB_tiled.tif','r');
imageData = read(t);

显示图像。

imshow(imageData);

2、rgb2ycbcr

skimage.color.rgb2ycbcr
和matlab的rgb2ycbcr效果一样

你可能感兴趣的:(python,matlab)