clear all

clc

in=imread('A1.png');

base=imread('A2.png');

subplot(2,2,1),imshow(in);

subplot(2,2,2),imshow(base);

k=0;

while k==0

cpselect(in,base);

k=waitforbuttonpress;

end

tform=cp2tform(movingPoints,fixedPoints,'projective');

out=imtransform(in,tform);

subplot(2,2,3),imshow(out);

使用cpselect的图像配准

 

相关文章:

  • 2021-09-18
  • 2021-09-10
  • 2021-08-29
  • 2023-01-02
  • 2021-08-07
  • 2021-09-17
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-13
  • 2022-12-23
  • 2022-12-23
  • 2021-05-13
  • 2021-08-24
相关资源
相似解决方案