diff options
author | Stéphane Lenclud <github@lenclud.com> | 2019-03-31 09:40:37 +0200 |
---|---|---|
committer | Stéphane Lenclud <github@lenclud.com> | 2019-04-24 18:46:12 +0200 |
commit | feb7026316a4f2ad551b4ea87226c264c5277ca4 (patch) | |
tree | a1f76ac4b525a29b016269c94f9f5758c7ddf940 /video-opencv | |
parent | 8141c4f07b1ddc4555d10a78ea5c3f482c8be04f (diff) |
First solveP3P results that are looking consistent.
Translation vector in meters seems to be spot on.
Rotation angles still need to be computed.
Radial distortion still need to be taken into account.
Diffstat (limited to 'video-opencv')
-rw-r--r-- | video-opencv/impl-camera.cpp | 2 | ||||
-rw-r--r-- | video-opencv/impl.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/video-opencv/impl-camera.cpp b/video-opencv/impl-camera.cpp index dddd463f..8a540134 100644 --- a/video-opencv/impl-camera.cpp +++ b/video-opencv/impl-camera.cpp @@ -30,7 +30,7 @@ bool cam::is_open() return !!cap; } -bool cam::start(const info& args) +bool cam::start(info& args) { stop(); cap.emplace(idx); diff --git a/video-opencv/impl.hpp b/video-opencv/impl.hpp index f756fb19..3d793490 100644 --- a/video-opencv/impl.hpp +++ b/video-opencv/impl.hpp @@ -34,7 +34,7 @@ struct cam final : camera cam(int idx); ~cam() override; - bool start(const info& args) override; + bool start(info& args) override; void stop() override; bool is_open() override; std::tuple<const frame&, bool> get_frame() override; |