What is the best way to determine the highest peak of each plant in a cup?

2 views (last 30 days)
Hi,
Am trying to detect the highest point of each plant in the cup, I have around 30 small plants (see attached Image)
Can anyone suggest, how to do so. what algorithms to be used to solve it anf if there is something already builtin in MatLab.
Thanks

Accepted Answer

Image Analyst
Image Analyst on 16 Mar 2023
Edited: Image Analyst on 16 Mar 2023
It would be best if you could plant them in a line and view them from the side with a white uniform background. Then it would be very straightforward.
If you insist on taking a top-down photo then you need to get a 3-D camera or profilometer that can give you a matrix/image where the pixel values are the heights.
It's a generic, general purpose demo of how to threshold an image to find blobs, and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
  5 Comments
B.ray
B.ray on 17 Mar 2023
Actually that's a good idea to threshold the depth first, that will make less overlapping between the plants. Though, there are different cups with different plants hights but I can set a minimum depth.
you mean this function right!!
stats = regionprops("table",bw,"Centroid", ...
"MajorAxisLength","MinorAxisLength");
I don't have a depth map at hand now. But it is changing from cup to cup and I will be using multiple cups.
Image Analyst
Image Analyst on 17 Mar 2023
No, I meant MaxIntensity
props = regionprops('table', mask, heightImage, 'MaxIntensity', 'Centroid');
This is because with a depth image, the pixel value represents either the height above the floor (use MaxIntensity) or the distance to the camera (use MinIntensity).
An alternative is to use imfill on the gray scale image to make a local background, then subtract that from the original, and then threshold. I have no idea if that will be any good or not but it might be worth a try.

Sign in to comment.

More Answers (0)

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!