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

2 次查看(过去 30 天)
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

采纳的回答

Image Analyst
Image Analyst 2023-3-16
编辑:Image Analyst 2023-3-16
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 个评论
B.ray
B.ray 2023-3-17
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 2023-3-17
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.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

产品


版本

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by