matlab中怎样修改彩色图像像素值

如题所述

imread Read image from graphics file.
    A = imread(FILENAME,FMT) reads a grayscale or color image from the file
    specified by the string FILENAME. FILENAME must be in the current 
    directory, in a directory on the MATLAB path, or include a full or 
    relative path to a file.
    
    The text string FMT specifies the format of the file by its standard
    file extension. For example, specify 'gif' for Graphics Interchange 
    Format files. To see a list of supported formats, with their file 
    extensions, use the IMFORMATS function. If imread cannot find a file 
    named FILENAME, it looks for a file named FILENAME.FMT.
 
    The return value A is an array containing the image data. If the file 
    contains a grayscale image, A is an M-by-N array. If the file contains
    a truecolor image, A is an M-by-N-by-3 array. For TIFF files containing
    color images that use the CMYK color space, A is an M-by-N-by-4 array. 
    See TIFF in the Format-Specific Information section for more
    information.

修改 A 矩阵 数据 就是

温馨提示:答案为网友推荐,仅供参考
相似回答