필터 지우기
필터 지우기

Image overlap while performing image transformation

조회 수: 1 (최근 30일)
Muhammad Umar
Muhammad Umar 2018년 11월 13일
I have two images as defined below.
Screen Shot 2018-11-13 at 6.36.42 PM.png
I took 6 distinct points from each image and from pseudo inverse, I created a transformation matrix T as
T = [X(1) X(4) 0;
X(2) X(5) 0;
X(3) X(6) 1
];
Now, I want to apply this transformation on image and overlap it on original image. I am reading imwarp. I cam apply transformation but I am not sure how can I overlap it on the original image where it originally belongs. I have also tried
tform = maketform('affine',[X(1) X(4) 0; X(2) X(5) 0; X(3) X(6) 1]);
imageRegistered = imtransform(handles.mainImageSec ,tform, 'XData',[1 W], 'YData', [1 H]);
But results are extremely weird.
What I want is something like this
Screen Shot 2018-11-13 at 6.40.16 PM.png

답변 (0개)

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by