From 75ea10e6ff8381890ca57d112b4d1985e8eddf01 Mon Sep 17 00:00:00 2001 From: Andrey Pavlenko <andrey.pavlenko@itseez.com> Date: Tue, 2 Apr 2013 12:14:43 +0400 Subject: [PATCH] fix for #2806 (missing 'nu03' field of moments) --- modules/python/src2/cv2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/python/src2/cv2.cpp b/modules/python/src2/cv2.cpp index a650f23f0..308eb4263 100644 --- a/modules/python/src2/cv2.cpp +++ b/modules/python/src2/cv2.cpp @@ -957,7 +957,7 @@ static inline PyObject* pyopencv_from(const Moments& m) "mu20", m.mu20, "mu11", m.mu11, "mu02", m.mu02, "mu30", m.mu30, "mu21", m.mu21, "mu12", m.mu12, "mu03", m.mu03, "nu20", m.nu20, "nu11", m.nu11, "nu02", m.nu02, - "nu30", m.nu30, "nu21", m.nu21, "nu12", m.nu12, "mu03", m.nu03); + "nu30", m.nu30, "nu21", m.nu21, "nu12", m.nu12, "nu03", m.nu03); } static inline PyObject* pyopencv_from(const CvDTreeNode* node)