Plotting a profile for a line on an image

7 Ansichten (letzte 30 Tage)
UCL
UCL am 11 Feb. 2013
Kommentiert: Image Analyst am 24 Jan. 2020
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

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

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

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Startup and Shutdown finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by