How can I grab the contour lines into a new figure ?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I am using contour function to get the contour lines from an image. Now I'd pretend to get only the contour lines created before to make a new image.
I am using [C,h]=contour(a,[0 0]); I have C - ContourMatrix and h - handler.
How can I create a new image (only contour lines) with this C and h ??
Thanks in Advance Mike
0 Kommentare
Akzeptierte Antwort
Kelly Kearney
am 7 Jun. 2013
a = peaks;
C = contourcs(a, [0 0]);
xy = {C.X; C.Y};
plot(xy{:});
9 Kommentare
Kelly Kearney
am 11 Jun. 2013
Oops, forgot that one... imshow also flips the axis. Add 'ydir' to the list of properties to copy.
Weitere Antworten (1)
Angus
am 7 Jun. 2013
"ContourMatrix is also a read-only contourgroup property that you can obtain from the returned handle." -- matlab docs
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!