#ifndef DEPTHGUIDE_IMAGE_MERGE_H #define DEPTHGUIDE_IMAGE_MERGE_H #include "image_utility.cuh" struct depth_mask_config { float lower = 0; float upper = 1; }; void call_depth_mask(image_type_v2 img, image_type_v2 depth, image_type_v2 out, depth_mask_config conf, cudaStream_t stream); #endif //DEPTHGUIDE_IMAGE_MERGE_H