DepthFromStereo.h
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2016, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package
19 * @author
20 * @date
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
24#pragma once
25class CByteImage;
26class CStereoCalibration;
27
28#include <vector>
29
30#include <pcl/point_cloud.h>
31#include <pcl/point_types.h>
32
34{
35 void GetPointsFromDisparity(const CByteImage* pImageLeftColor,
36 const CByteImage* pImageRightColor,
37 const CByteImage* pImageLeftGrey,
38 const CByteImage* pImageRightGrey,
39 const int nDisparityPointDistance,
40 pcl::PointCloud<pcl::PointXYZRGBA>& aPointsFromDisparity,
41 CByteImage* pDisparityImage,
42 const int imageWidth,
43 const int imageHeight,
44 CStereoCalibration* pStereoCalibration,
45 bool imagesAreUndistorted,
46 const bool smoothDisparities = true);
47
48 void FillHolesGray(const CByteImage* pInputImage,
49 CByteImage* pOutputImage,
50 const int imageWidth,
51 const int imageHeight,
52 const int nRadius = 1);
53
54 void CalculateSmoothedDisparityImage(float* pInputDisparity,
55 float* pSmoothedDisparity,
56 const int imageWidth,
57 const int imageHeight,
58 const int nRadius = 1);
59
60} // namespace visionx::depthfromstereo
void GetPointsFromDisparity(const CByteImage *pImageLeftColor, const CByteImage *pImageRightColor, const CByteImage *pImageLeftGrey, const CByteImage *pImageRightGrey, const int nDisparityPointDistance, pcl::PointCloud< pcl::PointXYZRGBA > &aPointsFromDisparity, CByteImage *pDisparityImage, const int imageWidth, const int imageHeight, CStereoCalibration *pStereoCalibration, bool imagesAreUndistorted, const bool smoothDisparities)
void CalculateSmoothedDisparityImage(float *pInputDisparity, float *pSmoothedDisparity, const int imageWidth, const int imageHeight, const int nRadius)
void FillHolesGray(const CByteImage *pInputImage, CByteImage *pOutputImage, const int imageWidth, const int imageHeight, const int nRadius)