图像的配准——MATLAB实现

通过使用MATLAB中的cpselect函数选择基准点,将两幅图像进行配准/对准。 首先读取两幅图像 clear all; Inimg = imread(‘g.jpg’); Baseimg= imread(‘image.jpg’); figure; subplot(1,2,1),imshow(Inimg); subplot(1,2,2),imshow(Baseimg); 显示为: 在MATLAB命
相关文章
相关标签/搜索