how to identify the threshold of an image?
1 次查看(过去 30 天)
显示 更早的评论
I need to quantify the threshold of the green color in the attached image to remove everything around it.
I started with something like this:
imshow(img(:,:,1))
[x1, y1] = ginput(1)
buffer = 1.5
img = buffer * (round(x1), round(y1) )
0 个评论
回答(1 个)
Cris LaPierre
2023-8-7
编辑:Cris LaPierre
2023-8-7
If you have the Image Processing toolbox installed, I would use the Color Thresholder app in MATLAB. I would then export the results to the workspace, and import that into the image viewer app to make measurements.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!