Skip to content

Commit 204db71

Browse files
committed
sfm: Added throwing of Error::StsNotImplemented for affine reconstruction
1 parent 4f8a400 commit 204db71

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

modules/sfm/src/reconstruct.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ namespace sfm
152152
else
153153
{
154154
// TODO: implement me
155+
CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented");
155156
}
156157

157158
}
@@ -180,6 +181,7 @@ namespace sfm
180181
else
181182
{
182183
// TODO: implement me
184+
CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented");
183185
}
184186

185187
}
@@ -223,6 +225,7 @@ namespace sfm
223225
else
224226
{
225227
// TODO: implement me
228+
CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented");
226229
}
227230

228231
}
@@ -248,6 +251,7 @@ namespace sfm
248251
else
249252
{
250253
// TODO: implement me
254+
CV_Error(Error::StsNotImplemented, "Affine reconstruction not yet implemented");
251255
}
252256

253257
}

0 commit comments

Comments
 (0)