What is the best way to determine the highest peak of each plant in a cup?
1 次查看(过去 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
0 个评论
采纳的回答
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 个评论
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 Center 和 File Exchange 中查找有关 Camera Calibration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!