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!