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.
我正在使用opencvPython 从网络摄像头提要中跟踪用户,因此代码如下所示:
opencv
cv.EllipseBox( frame, track_box, cv.CV_RGB(255,0,0), 3, cv.CV_AA, 0 )
如何在代码中打印出这个椭圆的质心?我是否必须将图像 ( frame) 本身转换为灰度并使用轮廓质心来获取它?或者我可以只使用框(track_box),因为如果我已经有选择,使用轮廓似乎是多余的。
frame
(track_box
我认为中心是 RotatedRect (track_box.center) 的公共数据成员