How to find out the intersection point of the image ?. (Intersection point: Where the X and Y White lines meets)
3 次查看(过去 30 天)
显示 更早的评论
0 个评论
回答(2 个)
Amith Kamath
2013-8-19
One of the many ways to do this:
I = imread('http://imageshack.us/a/img401/5148/0mbt.jpg');
J = I == 255; % note that there are many '255' valued pixels near the intersection.
se = strel('disk',5);
K = imerode(J,se); % remove some of the unwanted noise pixels.
[x y] = find(K) %returns the x,y coordinates of the region in question.
deepak gogade
2014-5-13
i want to intersection point of curve by the .fig file
this is my graph fig. i want to intersection point of efficiency & unit discharge at 100 unit speed & other unit speed. so how we use matlab code finding intersection of this.
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!