我正在使用一些关于对象跟踪的教程来创建一个简单的手势检测,但是我在新API中找不到函数GetSpatialMoment
和或等效函数。GetCentralMoment
cv2
教程代码总是这样,但它们总是在旧的 cv1 中:
moments = cv.Moments(thresholded_img, 0)
area = cv.GetCentralMoment(moments, 0, 0)
#there can be noise in the video so ignore objects with small areas
if(area > 100000):
#determine the x and y coordinates of the center of the object
#we are tracking by dividing the 1, 0 and 0, 1 moments by the area
x = cv.GetSpatialMoment(moments, 1, 0)/area
y = cv.GetSpatialMoment(moments, 0, 1)/area
cv2
我必须为此使用哪些新功能?