Determining Intersection Points in Images
1 次查看(过去 30 天)
显示 更早的评论
I have two images and they intersect at one point, but the in two different locations. For example, all though the images intersect at one point, for the first image it could be in column 2 but in the second image, it could be column 98. I am trying to determine the specific columns at points of intersection. Any suggestions on how to approach it? Thanks in advance
The images attached intersect at one location.
[r c] = size(img1) %both images of same size
for x = 1:c
distance = abs(img1(:,c) - img2(:,c))
if(distance == 0)
print x
end
end
2 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!