数字图像处理与机器视觉用到的Matlab语句

第三章 图像的点运算

3.1 imhist 和stem              3.2 imadjust                     3.5 im2bw 和 graythresh             3.7/3.8 histeq

第四章 图像的几何变换

4.2 strel, translate, imdilate  

4.3


4.4图像的镜像与转置

%maketform用于创建TFORM类型
% maketform(transformtype, Matrix);transformtype是制定变换类型,Matrix是对应变换类型的矩阵
%imtransform(A, TFORM,method);A为要进行变换的矩阵,TFORM为指定的变换类型,method为函数选择的插值方  %法
% method有bicubic ,bilinear , nearest


4.5 缩放


%B=imresize(A,scale,method)
%B = imresize(A,[mrows ncols],method)
%A是原图,scale和[mrows,ncols]是要进行缩放的比例,method是插值方法
% method有bicubic ,bilinear , nearest

4.6图像旋转

% B=imrotate(A,angle,method,'crop');A是要旋转的图片
% angle是要旋转的角度,method为imrotate旋转后要进行的插值方法,
%‘crop’选项会裁剪旋转后增大的图像,使得和原图大小一样

4.7 图像配准

%利用cpselect函数可以交互的选择基准点,
% cpselect(Irgb(: , :, 1), Ibase);只传递输入图像的红色部分
% tform = cp2form(input_points, base_points, 'affine');仿射变换模型
%affine还可以是其他的:


数字图像处理与机器视觉用到的Matlab语句_第1张图片

你可能感兴趣的:(图像处理,听课笔记)