From 204db719aaf5b0198aed1c11835d2835e1752e69 Mon Sep 17 00:00:00 2001 From: Philipp Hasper Date: Thu, 18 May 2017 09:54:23 +0200 Subject: [PATCH] sfm: Added throwing of Error::StsNotImplemented for affine reconstruction --- modules/sfm/src/reconstruct.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/sfm/src/reconstruct.cpp b/modules/sfm/src/reconstruct.cpp index e841d8b17..724ef701e 100644 --- a/modules/sfm/src/reconstruct.cpp +++ b/modules/sfm/src/reconstruct.cpp @@ -152,6 +152,7 @@ namespace sfm else { // TODO: implement me + CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented"); } } @@ -180,6 +181,7 @@ namespace sfm else { // TODO: implement me + CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented"); } } @@ -223,6 +225,7 @@ namespace sfm else { // TODO: implement me + CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented"); } } @@ -248,6 +251,7 @@ namespace sfm else { // TODO: implement me + CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented"); } }