首页 > 代码库 > matlab 图像常用函数

matlab 图像常用函数

Canny

function [ canny ] = canny( rgb )

temp=rgb2gray(rgb);

canny=edge(temp,‘canny‘);

end

 

灰度

temp=rgb2gray(rgb);

播放视频

clear all

source = VideoReader(‘d:\v\\bus\1.avi‘);

myObj = VideoWriter(‘bus1.avi‘);

open(myObj);

c= source.numberOfFrames;

for i=1:c

    f= read(source,i);

    f=rgb2gray(f);

    f=edge(f,‘canny‘);

    writeVideo(myObj,uint8(f));

    imshow(f);

    if(i>20)

        break;

    end

end

close(myObj);

 

类型转换

r1=int16(r1);

 

二值化

R=im2bw(rs,0.5);

 

 

显示图像

figure(2);

imshow(R);

 

反相,绝对值差

rs=255-rs;

rs=imabsdiff(rs,r2);

 

读入图片

Imread

 

旋转

A=imrotate(A,angle,‘ 旋转实现的方法‘,‘BBox‘)

matlab 图像常用函数