How to extract matching coordinates of a stitched and set of original images?

2 ビュー (過去 30 日間)
  2 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 2 月 27 日
What does it mean "matching coordinates"?
Eberechi ICHI
Eberechi ICHI 2021 年 2 月 27 日
I mean i want to match the stitched image with with original images (20 of them) and extract the matched pixel cordinates. kind of mapping them based on their pixel cordinates.

サインインしてコメントする。

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2021 年 2 月 27 日
編集済み: KALYAN ACHARJYA 2021 年 2 月 27 日
First Case: Pixel to Pixel comparision
Simplest is Do the subtraction: The nearly zero or zero in the differenc result signify the match between intensities on the particular coordinates.
diff_result=OriginalGrayImage-PresentGrayImage
% Do all operation
% Save the result, if array result consider cell array to save the result
% You can easily get the co-ordinates where oixels values are same in both image
[r_cor,c_cor]=find(diff_result==0);
Note the pattern matching is different
2nd Case:
3rd Case:
For 20 images, call images one by one and do the operation along with save the result.
There are so many threads related to call multiple images, please refer
Hope it helps!

その他の回答 (0 件)

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by