fusing an quiver with a contour

2 views (last 30 days)
Douglas Brenner
Douglas Brenner on 26 Oct 2016
Tried to fuse two images - a contour and a quiver plot. Didn't work. Thoughts
C = contour(filteredreducedSection);
[Gx, Gy] = imgradientxy(uint8(filteredreducedSection), 'CentralDifference');
Gx = flipud(Gx);
Q = quiver(Gy,Gx,4);
END = imfuse(Q,C);
figure (5);
imshow (END);

Answers (0)

Categories

Find more on Vector Fields in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!