Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035 #include "BoundingBox.h"
00036
00037
00038
00039 template<typename T>
00040 BoundingBoxDataPointsFilter<T>::BoundingBoxDataPointsFilter(const Parameters& params):
00041 PointMatcher<T>::DataPointsFilter("BoundingBoxDataPointsFilter",
00042 BoundingBoxDataPointsFilter::availableParameters(), params),
00043 xMin(Parametrizable::get<T>("xMin")),
00044 xMax(Parametrizable::get<T>("xMax")),
00045 yMin(Parametrizable::get<T>("yMin")),
00046 yMax(Parametrizable::get<T>("yMax")),
00047 zMin(Parametrizable::get<T>("zMin")),
00048 zMax(Parametrizable::get<T>("zMax")),
00049 removeInside(Parametrizable::get<bool>("removeInside"))
00050 {
00051 }
00052
00053
00054 template<typename T>
00055 typename PointMatcher<T>::DataPoints BoundingBoxDataPointsFilter<T>::filter(
00056 const DataPoints& input)
00057 {
00058 DataPoints output(input);
00059 inPlaceFilter(output);
00060 return output;
00061 }
00062
00063
00064 template<typename T>
00065 void BoundingBoxDataPointsFilter<T>::inPlaceFilter(
00066 DataPoints& cloud)
00067 {
00068 const int nbPointsIn = cloud.features.cols();
00069 const int nbRows = cloud.features.rows();
00070
00071 int j = 0;
00072 for (int i = 0; i < nbPointsIn; ++i)
00073 {
00074 bool keepPt = false;
00075 const Vector point = cloud.features.col(i);
00076
00077
00078 const bool x_in = (point(0) > xMin && point(0) < xMax);
00079 const bool y_in = (point(1) > yMin && point(1) < yMax);
00080 const bool z_in = (point(2) > zMin && point(2) < zMax) || nbRows == 3;
00081 const bool in_box = x_in && y_in && z_in;
00082
00083 if(removeInside)
00084 keepPt = !in_box;
00085 else
00086 keepPt = in_box;
00087
00088 if(keepPt)
00089 {
00090 cloud.setColFrom(j, cloud, i);
00091 ++j;
00092 }
00093 }
00094
00095 cloud.conservativeResize(j);
00096 }
00097
00098 template struct BoundingBoxDataPointsFilter<float>;
00099 template struct BoundingBoxDataPointsFilter<double>;
00100
00101