码迷,mamicode.com
首页 > 其他好文 > 详细

Matlab在图像中画标记框

时间:2015-01-07 18:37:46      阅读:764      评论:0      收藏:0      [点我收藏+]

标签:

Matlab在图像中画标记框

   img = imread(M1.JPG);
   figure;
   hold on;
   imshow(img);
   hold off;
   px = 1200;
   py = 2000;
   step = 200;
   x1 = px - step;
   x2 = px + step;
   y1 = py - step;
   y2 = py + step;
   hold on;
   rectx = [x1 x2 x2 x1 x1];
   recty = [y1 y1 y2 y2 y1];
   plot(rectx, recty, linewidth,2);
   hold off;

效果

技术分享

 

   img = imread(M1.JPG);
   figure;
   hold on;
   subplot(121);
   imshow(img);
   hold off;
   px = 1200;
   py = 2000;
   step = 200;
   x1 = px - step;
   x2 = px + step;
   y1 = py - step;
   y2 = py + step;
   hold on;
   rectx = [x1 x2 x2 x1 x1];
   recty = [y1 y1 y2 y2 y1];
   plot(rectx, recty, linewidth,2);
   hold off;
   img2 = imread(M2.jpg);
   hold on;
   subplot(122);
   imshow(img2);
   hold off;
   px = 1200;
   py = 2000;
   step = 200;
   x1 = px - step;
   x2 = px + step;
   y1 = py - step;
   y2 = py + step;
   hold on;
   rectx = [x1 x2 x2 x1 x1];
   recty = [y1 y1 y2 y2 y1];
   plot(rectx, recty, linewidth,2);
   hold off;

技术分享

Matlab在图像中画标记框

标签:

原文地址:http://www.cnblogs.com/adong7639/p/4208965.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!