RobotsIO
Loading...
Searching...
No Matches
DepthToFile.h
1/*
2 * Copyright (C) 2020 Istituto Italiano di Tecnologia (IIT)
3 *
4 * This software may be modified and distributed under the terms of the
5 * BSD 3-Clause license. See the accompanying LICENSE file for details.
6 */
7
8#ifndef ROBOTSIO_DEPTHTOFILE_H
9#define ROBOTSIO_DEPTHTOFILE_H
10
11#include <Eigen/Dense>
12
13#include <opencv2/opencv.hpp>
14
15namespace RobotsIO {
16 namespace Utils {
17 bool depth_to_file(const std::string& output_path, const cv::Mat& depth);
18
19 bool depth_to_file(const std::string& output_path, const Eigen::MatrixXf& depth);
20 }
21}
22
23#endif /* ROBOTSIO_DEPTHTOFILE_H */