Skip to content

Commit 821b7fb

Browse files
committed
Merge pull request #2206 from PaulDebus:sfm_importReconstruction
2 parents 0915b7e + 2b8870d commit 821b7fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

modules/sfm/include/opencv2/sfm/io.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ CV_EXPORTS_W
7676
void
7777
importReconstruction(const cv::String &file, OutputArrayOfArrays Rs,
7878
OutputArrayOfArrays Ts, OutputArrayOfArrays Ks,
79-
OutputArray points3d, int file_format = SFM_IO_BUNDLER);
79+
OutputArrayOfArrays points3d, int file_format = SFM_IO_BUNDLER);
8080

8181
//! @} sfm
8282

modules/sfm/src/io.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ namespace sfm
5050
void
5151
importReconstruction(const cv::String &file, OutputArrayOfArrays _Rs,
5252
OutputArrayOfArrays _Ts, OutputArrayOfArrays _Ks,
53-
OutputArray _points3d, int file_format) {
53+
OutputArrayOfArrays _points3d, int file_format) {
5454

5555
std::vector<Matx33d> Rs, Ks;
5656
std::vector<Vec3d> Ts, points3d;
@@ -89,4 +89,4 @@ importReconstruction(const cv::String &file, OutputArrayOfArrays _Rs,
8989

9090

9191
} /* namespace sfm */
92-
} /* namespace cv */
92+
} /* namespace cv */

0 commit comments

Comments
 (0)