如何将点列表转换为二进制矩阵?希望该操作适用于 640x640 图像。这是一个例子:
% the points
p = [2 2;2 3;3 3]
% the images is 4x4
img=zeros(4,4)
% set img to 1 for all points in p
???这是问题吗?
% 生成的二值图像 img =
0 0 0 0
0 1 0 0
0 1 1 0
0 0 0 0