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.
我必须从二进制图像中绘制一个图(使用矩阵 MN)。我使用水平积分投影来查找行的平均值。在那之后,我想要最小平均坐标做一条水平线。
水平线怎么画?
很难说出你在问什么,但这里有一些代码可能会有所帮助。它对图像的行求和,找到最小和,然后在具有最小和的行上绘制图像加上一条水平线。
x = rand(50); [~,i] = min(sum(x,2)); figure imagesc(x) hold on plot(xlim, [i i], 'w')