摘要: 理论知识:图像处理+双线性插值法 matlab实现图像旋转 Image Rotation I=imread('02.tif');J=imrotate( I,60,'bilinear') %显示全部K=imrotate(I,60,'bilinear','crop'); %剪切subplot(1,3,1 阅读全文
posted @ 2019-07-14 19:37 浮沉沉浮 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 点运算作用于单幅图像 点运算 对应代码如图: clc;clear all;I=imread('02.tif');I=im2double(I); %j将数据类型转换为double;figure(1);subplot(1,5,1);imshow(I);title('原图像','fontsize',7); 阅读全文
posted @ 2019-07-14 11:04 浮沉沉浮 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 领域: 位于坐标(x,y)处的像素p有4个水平和垂直的相邻像素,其坐标为 (x+1,y),(x-1,y),(x,y+1),(x,y-1); 这组像素称为p的的4领域。用N4(P)表示; 阅读全文
posted @ 2019-07-14 10:20 浮沉沉浮 阅读(762) 评论(0) 推荐(0) 编辑