How to show a gray scale image with its contour in one figure?
4 ビュー (過去 30 日間)
古いコメントを表示
Hello, guys:
I extracted two contours of a gray scale image, shown as following. But I can't make the contours shown upon the original gray scale imageg to get only one figure, I need a help, thanks a lot! The wanted result is like the third picture.
0 件のコメント
回答 (2 件)
Nils Speetzen
2019 年 7 月 6 日
Hi,
finalimage = imfuse(grayscaleimage, contour, 'blend');
imshow(finalimage)
The blend option uses alpha blending to combine both images.
I hope this works for you.
Image Analyst
2019 年 7 月 7 日
Try imshow() to display the image, then don't call subplot() or figure(). Just call "hold on" and then call plot() to plot the lines in the overlay above the figure.
imshow(grayImage);
hold on;
plot(x1, y1, 'm-'); % Draw magenta curve over image.
plot(x2, y2, 'g-'); % Draw green curve over image.
5 件のコメント
Image Analyst
2019 年 7 月 9 日
The gets the perimeter as an image, like bwboundaries() which gets the perimeters as a list of (x,y) coordinates. If you want to know how to use bwboundaries() and plot() to put up the lines in the overlay above the image, just ask.
Don't use contour as the name of your variable since it's the name of a built-in function.
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!