码迷,mamicode.com
首页 > Windows程序 > 详细

opencv中drawing line时报错

时间:2016-06-07 22:21:43      阅读:344      评论:0      收藏:0      [点我收藏+]

标签:

error: (-215) size.width>0 && size.height>0 in function imshow

1         img2 = cv2.rectangle(frame, (x,y), (x+w,y+h), 255,2)
2         cv2.imshow(img2,img2)

调试时可发现img2的类型为NoneType.即img2为empty

改为如下

1       cv2.rectangle(frame, (x,y), (x+w,y+h), 255,2)
2 
3       cv2.imshow(img2,frame)

 

opencv中drawing line时报错

标签:

原文地址:http://www.cnblogs.com/weixinforspurs/p/5568423.html

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