在 GMM 上应用 EM 后,我尝试使用此处详述的代码访问方法:http: //docs.opencv.org/2.3/modules/ml/doc/expectation_maximization.html
我的代码:
import cv2,cv
em = cv2.EM(nclusters=4)
result = em.train(gaussData)
print em.getMeans()
但我收到此错误:
AttributeError: 'cv2.EM' object has no attribute 'getMeans'
我正在使用 opencv 2.4.5 ( http://docs.opencv.org/2.4.5/modules/ml/doc/expectation_maximization.html ),它只列出了 Algorithm::get() 和 Algorithm::set() 函数C++
如何使用 Python 访问均值和协方差?!