mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-06-26 16:32:06 +08:00
modeld.cc construct matrix directly from data
This commit is contained in:
@@ -36,10 +36,7 @@ void* live_thread(void *arg) {
|
||||
-1.09890110e-03, 0.00000000e+00, 2.81318681e-01,
|
||||
-1.84808520e-20, 9.00738606e-04,-4.28751576e-02;
|
||||
|
||||
Eigen::Matrix<float, 3, 3> fcam_intrinsics;
|
||||
for (auto &v : fcam_intrinsic_matrix.v) {
|
||||
fcam_intrinsics << v;
|
||||
}
|
||||
Eigen::Matrix<float, 3, 3> fcam_intrinsics(fcam_intrinsic_matrix.v);
|
||||
#ifndef QCOM2
|
||||
float db_s = 0.5; // debayering does a 2x downscale
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user