Intersection between surface and planes
显示 更早的评论
Hi,
I have an image and I want to select a specific part on it. The part of interest on the image is a valley. My idea in order to extract it is to make intersections between planes - in all directions - and the surface of the image. Then, I will conserve the plane whose intersection values are minimal.
This is the 3D representation of the image :

My question : how can I make intersection with that surface which I defined as follows ?
x = 1:size(image,1);
y = 1:size(image,2);
[X,Y] = meshgrid(x,y);
surf(X,Y,image');
Thanks for any help.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Surface and Mesh Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!