Plotting a profile for a line on an image

19 visualizzazioni (ultimi 30 giorni)
Dear all
I have an x-ray image (in the .tif format) of an object and I would like to draw a line across a part of the image and then plot the profile. I can do this step by step on ImageJ but I was wondering if I could do this in Matlab.
Thank you

Risposta accettata

Image Analyst
Image Analyst il 11 Feb 2013
Use improfile(). If you want me to post a demo, let me know.
  5 Commenti
UCL
UCL il 12 Feb 2013
Sorry. I just noticed that the PC im working on doesnt have the image processing toolbox. Is there any other way around this?
I tried doing this:
close all; clear all; clc;
% Define parameters % Path / Location of the Image path='U:\My pictures\'; % Filename of the image filename='Wire_A_segment.tif';
bob=strcat(path,filename)
A=imread(bob);
figure imagesc(A) colormap(gray) colorbar axis image
% Horizontal Profile Plot Hor_Profile_Plot=A(200,:); % e.g. the profile plot of the 200th row
figure plot(Hor_Profile_Plot)
But this is manual .
Image Analyst
Image Analyst il 13 Feb 2013
You can use image() instead of imshow().

Accedi per commentare.

Più risposte (1)

UCL
UCL il 11 Feb 2013
Thank you for your reply. yes that would be great. My image is in the .tif format. I want to plot a profile of a horizontal line on the image.
THanx
  3 Commenti
shruti jain
shruti jain il 23 Gen 2020
i have an image .i want to draw line profile perpendicular to this image .how to draw
it .please help me
Image Analyst
Image Analyst il 24 Gen 2020
Call improfile() and then plot().

Accedi per commentare.

Categorie

Scopri di più su Startup and Shutdown in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by