How to create a line profile from a figure within a script

39 vues (au cours des 30 derniers jours)
Navjit Singh
Navjit Singh le 2 Avr 2019
Hello,
I would like to incorporate an intensity line profile of a figure that has been created in a script. The figure is simply an fft of an image.
Thanks,
NavPS.jpg

Réponses (1)

Agnish Dutta
Agnish Dutta le 11 Avr 2019
Consider going through the following MATLAB answers page:
If you want a 3-D line profile along certain defined line segments, load the image into MATLAB and use the "improfile" function to plot the intensity profile.
i1 = imread('<name of image>');
x = [19 427 416 77]; % Specify x- and y-coordinates that define connected line segments
y = [96 462 37 33];
improfile(i1,x,y),grid on; % Display a 3-D plot of the pixel values of these line segments.

Catégories

En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by