Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv_contrib
Commits
27bf9e29
Commit
27bf9e29
authored
May 18, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1169 from ioxp:sfmFixes
parents
9b5aa2a5
363097e9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
5 deletions
+10
-5
logging.h
modules/sfm/src/libmv_light/libmv/logging/logging.h
+5
-0
pipeline.cc
...les/sfm/src/libmv_light/libmv/simple_pipeline/pipeline.cc
+0
-4
reconstruct.cpp
modules/sfm/src/reconstruct.cpp
+5
-1
No files found.
modules/sfm/src/libmv_light/libmv/logging/logging.h
View file @
27bf9e29
...
...
@@ -23,6 +23,11 @@
#include <glog/logging.h>
#if defined _MSC_VER && _MSC_VER < 1900
# define snprintf _snprintf
#endif
#define LG LOG(INFO)
#define V0 LOG(INFO)
#define V1 LOG(INFO)
...
...
modules/sfm/src/libmv_light/libmv/simple_pipeline/pipeline.cc
View file @
27bf9e29
...
...
@@ -30,10 +30,6 @@
#include "libmv/simple_pipeline/tracks.h"
#include "libmv/simple_pipeline/camera_intrinsics.h"
#ifdef _MSC_VER
# define snprintf _snprintf
#endif
namespace
libmv
{
namespace
{
...
...
modules/sfm/src/reconstruct.cpp
View file @
27bf9e29
...
...
@@ -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"
);
}
}
...
...
@@ -239,7 +242,7 @@ namespace sfm
if
(
is_projective
)
{
reconstruct_
(
images
,
Rs
,
Ts
,
K
,
points3d
,
false
);
reconstruct_
(
images
,
Rs
,
Ts
,
K
,
points3d
);
}
...
...
@@ -248,6 +251,7 @@ namespace sfm
else
{
// TODO: implement me
CV_Error
(
Error
::
StsNotImplemented
,
"Affine reconstruction not yet implemented"
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment