Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/sfm/include/opencv2/sfm/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ CV_EXPORTS_W
void
importReconstruction(const cv::String &file, OutputArrayOfArrays Rs,
OutputArrayOfArrays Ts, OutputArrayOfArrays Ks,
OutputArray points3d, int file_format = SFM_IO_BUNDLER);
OutputArrayOfArrays points3d, int file_format = SFM_IO_BUNDLER);

//! @} sfm

Expand Down
4 changes: 2 additions & 2 deletions modules/sfm/src/io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ namespace sfm
void
importReconstruction(const cv::String &file, OutputArrayOfArrays _Rs,
OutputArrayOfArrays _Ts, OutputArrayOfArrays _Ks,
OutputArray _points3d, int file_format) {
OutputArrayOfArrays _points3d, int file_format) {

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


} /* namespace sfm */
} /* namespace cv */
} /* namespace cv */