i want to identify greenness in plant using image segmentation

2 views (last 30 days)
I have done already identify greenness with normalized methods (ExG, ExGR, CIVE) and Otsu methods. I want to know which method is better to identify greenness by comparing two of these.
which identify clear greenness in plant
help me for code

Answers (1)

Image Analyst
Image Analyst on 11 Jun 2019
Edited: Image Analyst on 11 Jun 2019
First of all, you need to snap images with a standard in there, such as the X-rite color checker chart
I never heard of those acronyms.
Otsu thresholding is not relevant here, unless it works to separate your leaves from background (like a uniform white or black background). Attach a few of your images.
You cannot compare greenness in different images unless you have a standard. You cannot simply use rgb2lab() and look at the b channel. That's what novices who are not trained in color science do. You must calibrate.
  2 Comments
N/A
N/A on 11 Jun 2019
@Image analyst can you please share the extractNLargebloobs() for skin filteration??
Image Analyst
Image Analyst on 11 Jun 2019
To extract the N largest blobs from a binary image:
largestNBlobs = bwareafilt(binaryImage, N);

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!