gusucode.com > 基于互信息的图像配准matlab源码程序 > 基于互信息的图像配准matlab源码程序/gobad.m

    close all; clear; clc;
%J=imread('cmanJ.tif');
J=imread('b.tif');

se = translate(strel(1), [30 20]);
J = imdilate(I,se);
J = imrotate(J,45,'nearest','crop');
%imwrite(J,'cmanJother.tif');
imshow(J);
figure;
imshow(I);