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
25 class CByteImage;
26 class CStereoCalibration;
27 
28 #include <vector>
29 
30 #include <pcl/point_types.h>
31 #include <pcl/point_cloud.h>
32 
34 {
35  void GetPointsFromDisparity(const CByteImage* pImageLeftColor, const CByteImage* pImageRightColor, const CByteImage* pImageLeftGrey, const CByteImage* pImageRightGrey,
36  const int nDisparityPointDistance, pcl::PointCloud<pcl::PointXYZRGBA>& aPointsFromDisparity, CByteImage* pDisparityImage,
37  const int imageWidth, const int imageHeight, CStereoCalibration* pStereoCalibration, bool imagesAreUndistorted, const bool smoothDisparities = true);
38 
39  void FillHolesGray(const CByteImage* pInputImage, CByteImage* pOutputImage, const int imageWidth, const int imageHeight, const int nRadius = 1);
40 
41  void CalculateSmoothedDisparityImage(float* pInputDisparity, float* pSmoothedDisparity, const int imageWidth, const int imageHeight, const int nRadius = 1);
42 
43 }
visionx::depthfromstereo::FillHolesGray
void FillHolesGray(const CByteImage *pInputImage, CByteImage *pOutputImage, const int imageWidth, const int imageHeight, const int nRadius)
Definition: DepthFromStereo.cpp:502
visionx::depthfromstereo::CalculateSmoothedDisparityImage
void CalculateSmoothedDisparityImage(float *pInputDisparity, float *pSmoothedDisparity, const int imageWidth, const int imageHeight, const int nRadius)
Definition: DepthFromStereo.cpp:547
visionx::depthfromstereo::GetPointsFromDisparity
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)
Definition: DepthFromStereo.cpp:67
visionx::depthfromstereo
Definition: DepthFromStereo.cpp:47