基本函数

imread('filename')    // 将图像读入matlab环境中

f = imread('rose.tif')  //f中存储的是图像数组,各点像素值

imshow(f)                //在matlab桌面上显示图像

imshow(f),figure,imshow(g)    //在保留第一幅图像的基础上输出显示第二幅图像


imshow()


pixval


imwrite(f,'filename')          //将函数写入当前目录


imwrite()用法


imfinfo


rows = size(f,1)    //给出数组的行数

cols = size(f,2)    //给出数组的列数

ndims(A)             //返回数组A的维数


重要的产生标准数组函数


2018-08-17

你可能感兴趣的:(基本函数)