Info

此问题已关闭。 请重新打开它进行编辑或回答。

help me in calculating

1 次查看(过去 30 天)
harshavardhanreddy reddy
关闭: MATLAB Answer Bot 2021-8-20
i convert rgb image to binary image,the rgb image is of agriculture crops either side with midlle path,i convert that rgb to binary image by making path as white and remaing trees as black, it gives a image of size 435*1200 means the matrix is also of same size.now i have to scan each row and find the pixel column number whose value is 1 and add the column numbers to find the mean distance in between them.
this has to be performed for all the 435 rows.
please help me by answering this and if possible give me a code.
  2 个评论
darova
darova 2020-1-23
It's hard to tell something without any data or example? Can you provide something?
harshavardhanreddy reddy
if i have the matrixof size 435*1200 like this how to calculates pixel coordinates for every pixel whose value is 1 and find mean point and joining of all mean points give straight line.
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0
0 1 0 0 0 0 1 1 1 1 0 0 0 0 0 0 01 1 1 0 0
0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0
0 0 0 0 0 1 1 1 1 1 1 1 0 0 0 0 0 00 0 0 0

回答(2 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020-1-23
编辑:KALYAN ACHARJYA 2020-1-23
now i have to scan each row and find the pixel column number whose value is 1 and add the column numbers to find the mean distance in between them.
Let say bw is the binary image
[r c]=find(bw==1);
Do with loop or other way to get the mean of individual row
  2 个评论
harshavardhanreddy reddy
thakyou for your fast reply sir,
i have to find mean point in the row by adding column numbers .
can you please elobarately mention the code or answer,because i am not that much experience in matlab ,
i am highly thankful to you in this regrad.
KALYAN ACHARJYA
KALYAN ACHARJYA 2020-1-23
编辑:KALYAN ACHARJYA 2020-1-23
for i=1:length(r)
[r,c]=find(bw(i,:)==1);
col_mean(i)=mean(c);
end
col_mean are the corresponding mean data of cloumns in respective rows. I have no clue what exactly you are trying to do.

Image Analyst
Image Analyst 2020-1-23
You need to take your binary image (which unfortunately you forgot to attach) and rotate it using the radon transform and imrotate() like in the attached example.
Then, once you have the crop rows aligned with the image edges, you"
  1. Invert the binary image (to get space instead of plants) and
  2. Call imclearborder() to remove any space not fully visible in the image, then
  3. Scan across the rows (or columns) getting the width of the spaces on each row (or column) using regionprops()
  4. After all rows have been scanned, compute the mean spacing.
  3 个评论
Image Analyst
Image Analyst 2020-1-24
I thought you had an already segmented photo of an overhead view. Why is this needed? Why some complicated vision system when simply using a tape measure will do the job much more simply?
You should look into the camera calibration capability of the Computer Vision Toolbox - it can do that.
harshavardhanreddy reddy
can you please explain elobarately how to do this to an image.

Community Treasure Hunt

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

Start Hunting!

Translated by