pc_generate.cuh 590 B

123456789101112131415161718
  1. #ifndef DEPTHGUIDE_PC_GENERATE_CUH
  2. #define DEPTHGUIDE_PC_GENERATE_CUH
  3. #include "pc_utility.cuh"
  4. #include "image_utility.cuh"
  5. namespace gen_pc {
  6. void call_rgb_with_mask(image_type_v2<uchar3> color, image_type_v2<float1> depth,
  7. image_type_v2<uchar1> mask, image_type_v2<float2> remap,
  8. pc_type_rgb out, cudaStream_t stream);
  9. void call_rgbd(image_type_v2<uchar3> color, image_type_v2<float1> depth,
  10. image_type_v2<float2> remap, pc_type_rgb out, cudaStream_t stream);
  11. }
  12. #endif //DEPTHGUIDE_PC_GENERATE_CUH