fusing an quiver with a contour
3 次查看(过去 30 天)
显示 更早的评论
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);
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!