Info

This question is closed. Reopen it to edit or answer.

help me in calculating

1 view (last 30 days)
harshavardhanreddy reddy
harshavardhanreddy reddy on 23 Jan 2020
Closed: MATLAB Answer Bot on 20 Aug 2021
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 Comments
darova
darova on 23 Jan 2020
It's hard to tell something without any data or example? Can you provide something?
harshavardhanreddy reddy
harshavardhanreddy reddy on 23 Jan 2020
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

Answers (2)

KALYAN ACHARJYA
KALYAN ACHARJYA on 23 Jan 2020
Edited: KALYAN ACHARJYA on 23 Jan 2020
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 Comments
harshavardhanreddy reddy
harshavardhanreddy reddy on 23 Jan 2020
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 on 23 Jan 2020
Edited: KALYAN ACHARJYA on 23 Jan 2020
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 on 23 Jan 2020
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 Comments
Image Analyst
Image Analyst on 24 Jan 2020
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
harshavardhanreddy reddy on 27 Jan 2020
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!