码迷,mamicode.com
首页 > 其他好文 > 详细

matlab 图像常用函数

时间:2014-11-11 12:30:23      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   for   on   cti   bs   ad   

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 图像常用函数

标签:io   ar   os   sp   for   on   cti   bs   ad   

原文地址:http://www.cnblogs.com/ahuo/p/4089067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!