comparison OrthancStone/Sources/Toolbox/FiniteProjectiveCamera.h @ 1571:85e117739eca

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 21 Sep 2020 17:46:39 +0200
parents 244ad1e4e76a
children 4fb8fdf03314
comparison
equal deleted inserted replaced
1570:9a04f42098a3 1571:85e117739eca
51 const Vector& c) 51 const Vector& c)
52 { 52 {
53 Setup(k, r, c); 53 Setup(k, r, c);
54 } 54 }
55 55
56 FiniteProjectiveCamera(const Matrix& p) 56 explicit FiniteProjectiveCamera(const Matrix& p)
57 { 57 {
58 Setup(p); 58 Setup(p);
59 } 59 }
60 60
61 FiniteProjectiveCamera(const double k[9], 61 FiniteProjectiveCamera(const double k[9],
62 const double r[9], 62 const double r[9],
63 const double c[3]); 63 const double c[3]);
64 64
65 FiniteProjectiveCamera(const double p[12]); 65 explicit FiniteProjectiveCamera(const double p[12]);
66 66
67 // Constructor that implements camera calibration 67 // Constructor that implements camera calibration
68 FiniteProjectiveCamera(const Vector& camera, 68 FiniteProjectiveCamera(const Vector& camera,
69 const Vector& principalPoint, 69 const Vector& principalPoint,
70 double angle, 70 double angle,