jerryzeng dec5589bdb version 1.6
-compatible to VITIS_HLS
-compatible to ubuntu24.04
-change test data directory
2025-11-22 22:45:19 +08:00

19 lines
270 B
C

#ifndef COMPUTE_3D_H
#define COMPUTE_3D_H
#include "../../globals/algoGlobals.h"
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
);
#endif