필터 지우기
필터 지우기

superimpose quiver plot onto image

조회 수: 3 (최근 30일)
Philip
Philip 2011년 2월 21일
답변: Sulaymon Eshkabilov 2021년 5월 20일
Hi,
Does anyone know a way of superimposing the gradient vector field of an image onto the image itself? As far as I can tell, the "quiver" function should allow this, but I cannot get it to work... it just shows a blue figure. This is the code I am using:
img = imread('bubbles.jpg');
ycbcr = rgb2ycbcr(img);
lum = ycbcr(:,:,1);
[gx gy] = gradient(lum);
figure('name','Gradient');
imshow(dens,[],'InitialMagnification','fit');
hold on;
quiver(gx(1:r,1:c),gy(1:r,1:c));
title('Gradient Field');
Thanks for any help you are able to give me.

답변 (1개)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021년 5월 20일
Here is the complete solution script:
img = imread('Bubble0.jpg');
GI = rgb2gray(img);
[gx, gy] = gradient(double(GI), .5, .5);
[r, c, LA]=size(img);
figure('name','Gradient');
imshow(img(1:r,1:c),'InitialMagnification','fit');
hold on;
quiver(gx(1:r,1:c),gy(1:r,1:c), 1);
title('Gradient Field');
figure
quiver(gx(1:r,1:c),gy(1:r,1:c), 10);
title('Gradient Field')

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by