How to find length, width,edges of rice in this image??
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Image Analyst
el 16 de Nov. de 2018
See my Image Processing Tutorial in My File Exchange
0 comentarios
Más respuestas (1)
Mark Sherstan
el 16 de Nov. de 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:

2 comentarios
Mark Sherstan
el 17 de Nov. de 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.
Ver también
Categorías
Más información sobre Get Started with Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!