How to find length, width,edges of rice in this image??

4 Ansichten (letzte 30 Tage)
Jasleen Kaur
Jasleen Kaur am 16 Nov. 2018
Kommentiert: Mark Sherstan am 17 Nov. 2018
c.jpg

Akzeptierte Antwort

Image Analyst
Image Analyst am 16 Nov. 2018
See my Image Processing Tutorial in My File Exchange

Weitere Antworten (1)

Mark Sherstan
Mark Sherstan am 16 Nov. 2018
Use the Image Processing Toolbox and this code:
I = imread('download.jpg');
I = rgb2gray(I);
BW = imbinarize(I);
stats = regionprops(I)
You can retrive the results from the structure in stats. Alternatively you could use the Image Region Analyzer app which is also part of the toolbox:
Capture.PNG
  2 Kommentare
Jasleen Kaur
Jasleen Kaur am 17 Nov. 2018
rice named image exists in my laptop but it gives error, i dint know why15424762880751037376185291316968.jpg
Mark Sherstan
Mark Sherstan am 17 Nov. 2018
You have an extra space at the end of your string. Also please confirm that the image and your script are in the same directory.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Get Started with Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by