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生成,并以矩阵形式提供。
如果圆圈是二值图像,则可以执行以下操作:
imfill
从第 1 步开始,使用两个相同大小的二进制掩码:
BW12 = BW1 & BW2; Iout = zeros(size(BW1)); Iout(BW12) = Iin(BW12);
如果您也想绘制圆圈,请按照类似的方法使用表示未填充圆圈的蒙版。