Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Matlab 中不使用 imfreehand 但自动选择图像中不规则形状的蒙版?图像的背景是黑色的,我想选择整个图像作为没有黑色背景的蒙版(没有黑色背景的所有内容)。
试试这个:
threshold=0; % or a different value if needed mask=image>threshold;
假设背景是真正的黑色,即像素值为 0,则将阈值设置为零。否则,选择一个捕获背景的值(有自动执行此操作的方法)