help me in calculating

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 Commenti

darova
darova il 23 Gen 2020
It's hard to tell something without any data or example? Can you provide something?
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

Risposte (2)

KALYAN ACHARJYA
KALYAN ACHARJYA il 23 Gen 2020
Modificato: KALYAN ACHARJYA il 23 Gen 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 Commenti

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 il 23 Gen 2020
Modificato: KALYAN ACHARJYA il 23 Gen 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 il 23 Gen 2020

0 voti

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 Commenti

already the agriculture path is of straight in image or its approximately straight row.jpg,what is the need of rotating the image for calculating the row distance avaible.can you please give code for solving this images.vineyard.jpg
Image Analyst
Image Analyst il 24 Gen 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.
can you please explain elobarately how to do this to an image.

Questa domanda è chiusa.

Chiuso:

il 20 Ago 2021

Community Treasure Hunt

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

Start Hunting!

Translated by