using improfile in 2D image.

11 visualizzazioni (ultimi 30 giorni)
taewoo kim
taewoo kim il 7 Nov 2018
Risposto: Walter Roberson il 16 Set 2019
I want to make a graph, which has x-axis, y-axis are size of a image and z-axis is intensity of that pixel, from a black-white image. The image is a just gradation dot(darkest at center).
L = size(my_img);
x = [1:L(1)];
y = [1:L(2)];
improfile(my_img, x, y)
I tried upper one. It shows graph from (1,1) to (end,end). And it is not I wanted. I want to get a cone shape graph. How can I get that??
  1 Commento
KAE
KAE il 16 Set 2019
With the image file, it is hard to help with this question. It is not clear where a cone is in an image that is not shown.

Accedi per commentare.

Risposte (1)

Walter Roberson
Walter Roberson il 16 Set 2019
surf(my_image, 'edgecolor','none')

Community Treasure Hunt

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

Start Hunting!

Translated by