Public Types | Public Member Functions | Protected Attributes
pcl::people::PersonClassifier< PointT > Class Template Reference

#include <person_classifier.h>

List of all members.

Public Types

typedef pcl::PointCloud< PointTPointCloud
typedef boost::shared_ptr
< PointCloud
PointCloudPtr

Public Member Functions

void copyMakeBorder (PointCloudPtr &input_image, PointCloudPtr &output_image, int xmin, int ymin, int width, int height)
 Copies an image and makes a black border around it, where the source image is not present.
double evaluate (float height, float xc, float yc, PointCloudPtr &image)
 Classify the given portion of image.
double evaluate (PointCloudPtr &image, Eigen::Vector3f &bottom, Eigen::Vector3f &top, Eigen::Vector3f &centroid, bool vertical)
 Compute person confidence for a given PersonCluster.
void getSVM (int &window_height, int &window_width, std::vector< float > &SVM_weights, float &SVM_offset)
 Get trained SVM for person confidence estimation.
bool loadSVMFromFile (std::string svm_filename)
 Load SVM parameters from a text file.
 PersonClassifier ()
 Constructor.
void resize (PointCloudPtr &input_image, PointCloudPtr &output_image, int width, int height)
 Resize an image represented by a pointcloud containing RGB information.
void setSVM (int window_height, int window_width, std::vector< float > SVM_weights, float SVM_offset)
 Set trained SVM for person confidence estimation.
virtual ~PersonClassifier ()
 Destructor.

Protected Attributes

float SVM_offset_
 SVM offset.
std::vector< float > SVM_weights_
 SVM weights vector.
int window_height_
 Height of the image patch to classify.
int window_width_
 Width of the image patch to classify.

Detailed Description

template<typename PointT>
class pcl::people::PersonClassifier< PointT >

Definition at line 54 of file person_classifier.h.


Member Typedef Documentation

template<typename PointT>
typedef pcl::PointCloud<PointT> pcl::people::PersonClassifier< PointT >::PointCloud

Definition at line 72 of file person_classifier.h.

template<typename PointT>
typedef boost::shared_ptr<PointCloud> pcl::people::PersonClassifier< PointT >::PointCloudPtr

Definition at line 73 of file person_classifier.h.


Constructor & Destructor Documentation

template<typename PointT >
pcl::people::PersonClassifier< PointT >::PersonClassifier ( )

Constructor.

Definition at line 47 of file person_classifier.hpp.

template<typename PointT >
pcl::people::PersonClassifier< PointT >::~PersonClassifier ( ) [virtual]

Destructor.

Definition at line 50 of file person_classifier.hpp.


Member Function Documentation

template<typename PointT >
void pcl::people::PersonClassifier< PointT >::copyMakeBorder ( PointCloudPtr input_image,
PointCloudPtr output_image,
int  xmin,
int  ymin,
int  width,
int  height 
)

Copies an image and makes a black border around it, where the source image is not present.

Parameters:
[in]input_imageA pointer to a pointcloud containing RGB information.
[out]output_imageA pointer to the output pointcloud.
[in]xminx coordinate of the top-left point of the bbox to copy from the input image.
[in]yminy coordinate of the top-left point of the bbox to copy from the input image.
[in]widthOutput width.
[in]heightOutput height.

Definition at line 181 of file person_classifier.hpp.

template<typename PointT >
double pcl::people::PersonClassifier< PointT >::evaluate ( float  height,
float  xc,
float  yc,
PointCloudPtr image 
)

Classify the given portion of image.

Parameters:
[in]heightThe height of the image patch to classify, in pixels.
[in]xcThe x-coordinate of the center of the image patch to classify, in pixels.
[in]ycThe y-coordinate of the center of the image patch to classify, in pixels.
[in]imageThe whole image (pointer to a point cloud containing RGB information) containing the object to classify.
Returns:
The classification score given by the SVM.

Definition at line 216 of file person_classifier.hpp.

template<typename PointT >
double pcl::people::PersonClassifier< PointT >::evaluate ( PointCloudPtr image,
Eigen::Vector3f &  bottom,
Eigen::Vector3f &  top,
Eigen::Vector3f &  centroid,
bool  vertical 
)

Compute person confidence for a given PersonCluster.

Parameters:
[in]imageThe input image (pointer to a point cloud containing RGB information).
[in]bottomTheoretical bottom point of the cluster projected to the image.
[in]topTheoretical top point of the cluster projected to the image.
[in]centroidTheoretical centroid point of the cluster projected to the image.
[in]verticalIf true, the sensor is considered to be vertically placed (portrait mode).
Returns:
The person confidence.

Definition at line 282 of file person_classifier.hpp.

template<typename PointT >
void pcl::people::PersonClassifier< PointT >::getSVM ( int &  window_height,
int &  window_width,
std::vector< float > &  SVM_weights,
float &  SVM_offset 
)

Get trained SVM for person confidence estimation.

Parameters:
[out]window_heightDetection window height.
[out]window_widthDetection window width.
[out]SVM_weightsSVM weights vector.
[out]SVM_offsetSVM offset.

Definition at line 104 of file person_classifier.hpp.

template<typename PointT >
bool pcl::people::PersonClassifier< PointT >::loadSVMFromFile ( std::string  svm_filename)

Load SVM parameters from a text file.

Parameters:
[in]svm_filenameFilename containing SVM parameters.
Returns:
true if SVM has been correctly set, false otherwise.

Definition at line 53 of file person_classifier.hpp.

template<typename PointT >
void pcl::people::PersonClassifier< PointT >::resize ( PointCloudPtr input_image,
PointCloudPtr output_image,
int  width,
int  height 
)

Resize an image represented by a pointcloud containing RGB information.

Parameters:
[in]input_imageA pointer to a pointcloud containing RGB information.
[out]output_imageA pointer to the output pointcloud.
[in]widthOutput width.
[in]heightOutput height.

Definition at line 113 of file person_classifier.hpp.

template<typename PointT >
void pcl::people::PersonClassifier< PointT >::setSVM ( int  window_height,
int  window_width,
std::vector< float >  SVM_weights,
float  SVM_offset 
)

Set trained SVM for person confidence estimation.

Parameters:
[in]window_heightDetection window height.
[in]window_widthDetection window width.
[in]SVM_weightsSVM weights vector.
[in]SVM_offsetSVM offset.

Definition at line 95 of file person_classifier.hpp.


Member Data Documentation

template<typename PointT>
float pcl::people::PersonClassifier< PointT >::SVM_offset_ [protected]

SVM offset.

Definition at line 65 of file person_classifier.h.

template<typename PointT>
std::vector<float> pcl::people::PersonClassifier< PointT >::SVM_weights_ [protected]

SVM weights vector.

Definition at line 68 of file person_classifier.h.

template<typename PointT>
int pcl::people::PersonClassifier< PointT >::window_height_ [protected]

Height of the image patch to classify.

Definition at line 59 of file person_classifier.h.

template<typename PointT>
int pcl::people::PersonClassifier< PointT >::window_width_ [protected]

Width of the image patch to classify.

Definition at line 62 of file person_classifier.h.


The documentation for this class was generated from the following files:


pcl
Author(s): Open Perception
autogenerated on Wed Aug 26 2015 15:44:32