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

1 view (last 30 days)
c.jpg

Accepted Answer

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

More Answers (1)

Mark Sherstan
Mark Sherstan on 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 Comments
Jasleen Kaur
Jasleen Kaur on 17 Nov 2018
rice named image exists in my laptop but it gives error, i dint know why15424762880751037376185291316968.jpg
Mark Sherstan
Mark Sherstan on 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.

Sign in to comment.

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!