how to project image into (x,y) coordinates graph

24 ビュー (過去 30 日間)
SHOBA MOHAN
SHOBA MOHAN 2018 年 1 月 2 日
コメント済み: Walter Roberson 2018 年 1 月 3 日
I have an image and wish to project the pixel details into graphical form in which x,y coordinates are pixel position and pixel number and vice versa. Can anyone help me
  3 件のコメント
Guillaume
Guillaume 2018 年 1 月 2 日
You use some odd terms in your question which makes it difficult to understand. What do you mean by project? What is pixel number? And what do you mean by vice versa?
It sounds like you simply want to display your image which you'd do with
imshow(yourimagearray)
If you wanted to see the axis, you'd do
axis on
afterward. But I've no idea if that's what you're asking.
SHOBA MOHAN
SHOBA MOHAN 2018 年 1 月 3 日
Kindly apologize for typo errors. I wish to plot x_width and y_height of image. In x_width plot, x and y axis are pixel position and pixel number whereas in y_height plot, the x and y axis are vice versa. Suggest me to do this

サインインしてコメントする。

回答 (2 件)

Walter Roberson
Walter Roberson 2018 年 1 月 2 日
YourImage = imread('shadow_remove.
jpg') ;
GreyImage = rgb2gray(YourImage) ; %jpeg are rarely rarely greyscale files even if they look to be
plot(GreyImage(:))
  2 件のコメント
SHOBA MOHAN
SHOBA MOHAN 2018 年 1 月 3 日
Thanks Walter. I attached the expected output format for your reference. Can you please refer the attachment and guide me to get the output in the expected form.
Walter Roberson
Walter Roberson 2018 年 1 月 3 日
The horizontal and vertical projection are max(GreyImage,[],1) and max(GreyImage,[],2) which you could then plot() or bar() to display.

サインインしてコメントする。


Guillaume
Guillaume 2018 年 1 月 3 日
If I understood correctly you have a binary image and you want the pixel count (which you call the pixel number) along each column and along each row:
%binaryimage: a binary image
xwidth = 1:size(binaryimage, 2);
xcount = sum(binaryimage, 1);
yheight = 1:size(binaryimage, 1);
ycount = sum(binaryimage, 2);
You can plot that any number of ways, e.g.:
figure;
subplot(1, 2, 1);
bar(xwidth, xcount);
xlabel('pixel position along x');
ylabel('pixel count');
title('horizontal histogram');
subplot(1, 2, 2);
barh(yheight, ycount);
xlabel('pixel count');
ylabel('pixel position along y');
title('vertical histogram');

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by