save data in matrix after improfile
显示 更早的评论
Hi,
I have an image and I would like to get a cross section of it- line intensity profile to evaluate the lines if are equally seperated . I had set improfile at the mid-point of the image and I got the intensity profile. After I would like to save the improfile matlab figure into a matrix and try get from the matrix a specific row for all the columns but I cant find the way to do it.
Please see my code below :
I = imread('Test-0.tif'); %% I have tif files but here I uploaded a jpg
x = [0 size(I,2)];
y = [size(I,1)/2 size(I,1)/2]; %choose the middle y data
improfile(I,x,y);
imshow(I);
figure
M=improfile(I,x,y);
save('data.mat','M');
3 个评论
Geoff Hayes
2021-10-4
@Eva G are you observing an error with
[M(:,:)]=improfile(I,x,y);
? Why, on the left-hand side, are you using M(:,:) rather than just M?
Eva G
2021-10-4
Geoff Hayes
2021-10-4
回答(1 个)
Prachi Kulkarni
2021-10-18
Hi,
In the code snippet you have provided, the pixel values are sampled along only one line segment in image I. The endpoints of this line segment are I(0, size(I,1)/2) and I(size(I,2), size(I,1)/2). Hence, the output variable M is giving a single vector of pixel values along the segment.
To get the profile along multiple horizontal line segments in the image, you will have to generate the profile for all the line segments in a loop and combine their output in a matrix. For example, to get a profile along 3 horizontal lines at the top, middle and bottom, the code would be as follows.
I = imread('Test-0.jpg'); %% I have tif files but here I uploaded a jpg
x = [0 size(I,2)];
M = [];
for yi = [1 size(I,1)/2 size(I,1)]
y = [yi yi]; %choose the middle y data
figure
Mi = improfile(I,x,y);
M = [M ; Mi'];
end
save('data.mat','M');
类别
在 帮助中心 和 File Exchange 中查找有关 Image Segmentation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!