各位晚上好
如题
请问要如何在已知座标点并绘出的矩形中
提取矩形内的图像呢?
就像侦测移动物体并单独显示那样
如下图那样
https://i.imgur.com/T0oG7Ko.jpg
目前是有抓到并能正确显示期望的标记物框线
但不晓得能用什么指令或怎么写 让它单独显示
以下是我标记的部分
[L,nm] = bwlabel(BWCuterodil,8);
for i = 1:nm
[r,c] = find(L == i);
left= min(c);
right= max(c);
top= min(r);
buttom= max(r);
width=right - left + 1;
height = buttom - top + 1;
rectangle('Position',[left,top,width,height],'EdgeColor','r');
pause(0.01);
end
查了一下,仿射之类的好像也不是
但是打投影好像也没看到相关的
另外还有,若对提出的矩形内的图像做修图
能直接覆蓋原图像吗?
还请各位指导提点这两个部分,谢谢!!