19 lines
270 B
C
Raw Normal View History

2025-06-08 11:37:52 +08:00
#ifndef COMPUTE_3D_H
#define COMPUTE_3D_H
#include "../../globals/algoGlobals.h"
2025-06-08 11:37:52 +08:00
void compute3D(
hls::stream<RgnSubPixCalib> &inSubCalib,
hls::stream<Pnt3D> &outPt3D,
float u0,
float v0,
float F_inv,
float plane_a,
float plane_b,
float plane_c
2025-06-08 11:37:52 +08:00
);
#endif