18 std::vector<uint8_t> depth_data;
19 int32_t depth_map_width;
20 int32_t depth_map_height;
22 depth_map(std::vector<uint8_t> depth_data_,
23 int32_t depth_map_width_,
24 int32_t depth_map_height_)
25 : depth_data(std::move(depth_data_))
26 , depth_map_width(std::move(depth_map_width_))
27 , depth_map_height(std::move(depth_map_height_))