From ec150c24e332b38bcce0c94ff2055b9d453b24ad Mon Sep 17 00:00:00 2001 From: Maria Dimashova Date: Tue, 9 Aug 2011 13:58:05 +0000 Subject: [PATCH] added CV_CAP_PROP_OPENNI_REGISTRATION property for getting --- modules/highgui/src/cap_openni.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/highgui/src/cap_openni.cpp b/modules/highgui/src/cap_openni.cpp index 463abe1760..74bc74afcc 100644 --- a/modules/highgui/src/cap_openni.cpp +++ b/modules/highgui/src/cap_openni.cpp @@ -403,6 +403,8 @@ double CvCapture_OpenNI::getDepthGeneratorProperty( int propIdx ) case CV_CAP_PROP_OPENNI_FOCAL_LENGTH : res = depthFocalLength_VGA; break; + case CV_CAP_PROP_OPENNI_REGISTRATION : + res = depthGenerator.GetAlternativeViewPointCap().IsViewPointAs(imageGenerator) ? 1.0 : 0.0; default : CV_Error( CV_StsBadArg, "Depth generator does not support such parameter for getting.\n"); }