Plotting a profile for a line on an image

15 views (last 30 days)
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

Accepted Answer

Image Analyst
Image Analyst on 11 Feb 2013
Use improfile(). If you want me to post a demo, let me know.
  5 Comments
UCL
UCL on 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 on 13 Feb 2013
You can use image() instead of imshow().

Sign in to comment.

More Answers (1)

UCL
UCL on 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 Comments
shruti jain
shruti jain on 23 Jan 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 on 24 Jan 2020
Call improfile() and then plot().

Sign in to comment.

Categories

Find more on Historical Contests in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!