separating objects in an image

is there any way to separate object in an image based on white space bettween them.

2 Commenti

KSSV
KSSV il 17 Ott 2020
How about imcrop?
imcrop using coordinates. It means i must know the coordinates first. The problem is i don't know how to get coordinates from this picture.

Accedi per commentare.

Risposte (1)

Ameer Hamza
Ameer Hamza il 17 Ott 2020

0 voti

See bwconncomp(): https://www.mathworks.com/help/images/ref/bwconncomp.html from image processing toolbox.

1 Commento

I'm already trying using regionprops but i don't know how to continue it.
A = imread('E:\Dataset\Crop\Contoh honocoroko.jpg');
level = graythresh(A);
b = im2bw(A,level);
CC = bwconncomp(b);
stats = regionprops(CC,'All');

Accedi per commentare.

Prodotti

Richiesto:

il 17 Ott 2020

Commentato:

il 18 Ott 2020

Community Treasure Hunt

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

Start Hunting!

Translated by