64be9f5
diff -up ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter.hpp.gcc47 ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter.hpp
64be9f5
--- ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter.hpp.gcc47	2012-02-27 19:52:53.813318632 -0500
64be9f5
+++ ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter.hpp	2012-02-27 19:53:22.815364954 -0500
64be9f5
@@ -54,7 +54,7 @@ pcl::tracking::KLDAdaptiveParticleFilter
64be9f5
   // initializing for sampling without replacement
64be9f5
   std::vector<int> a (particles_->points.size ());
64be9f5
   std::vector<double> q (particles_->points.size ());
64be9f5
-  genAliasTable (a, q, particles_);
64be9f5
+  this->genAliasTable (a, q, particles_);
64be9f5
   
64be9f5
   const std::vector<double> zero_mean (StateT::stateDimension (), 0.0);
64be9f5
   
64be9f5
diff -up ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter_omp.hpp.gcc47 ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter_omp.hpp
64be9f5
--- ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter_omp.hpp.gcc47	2012-02-27 20:05:28.374624954 -0500
64be9f5
+++ ./tracking/include/pcl/tracking/impl/kld_adaptive_particle_filter_omp.hpp	2012-02-27 20:06:40.305196260 -0500
64be9f5
@@ -8,14 +8,14 @@ pcl::tracking::KLDAdaptiveParticleFilter
64be9f5
   {
64be9f5
 #pragma omp parallel for schedule (dynamic, threads_)
64be9f5
     for (int i = 0; i < particle_num_; i++)
64be9f5
-      computeTransformedPointCloudWithoutNormal (particles_->points[i], *transed_reference_vector_[i]);
64be9f5
+      this->computeTransformedPointCloudWithoutNormal (particles_->points[i], *transed_reference_vector_[i]);
64be9f5
     
64be9f5
     PointCloudInPtr coherence_input (new PointCloudIn);
64be9f5
-    cropInputPointCloud (input_, *coherence_input);
64be9f5
+    this->cropInputPointCloud (input_, *coherence_input);
64be9f5
     if (change_counter_ == 0)
64be9f5
     {
64be9f5
       // test change detector
64be9f5
-      if (!use_change_detector_ || testChangeDetection (coherence_input))
64be9f5
+      if (!use_change_detector_ || this->testChangeDetection (coherence_input))
64be9f5
       {
64be9f5
         changed_ = true;
64be9f5
         change_counter_ = change_detector_interval_;
64be9f5
@@ -54,11 +54,11 @@ pcl::tracking::KLDAdaptiveParticleFilter
64be9f5
 #pragma omp parallel for schedule (dynamic, threads_)
64be9f5
     for (int i = 0; i < particle_num_; i++)
64be9f5
     {
64be9f5
-      computeTransformedPointCloudWithNormal (particles_->points[i], *indices_list[i], *transed_reference_vector_[i]);
64be9f5
+      this->computeTransformedPointCloudWithNormal (particles_->points[i], *indices_list[i], *transed_reference_vector_[i]);
64be9f5
     }
64be9f5
     
64be9f5
     PointCloudInPtr coherence_input (new PointCloudIn);
64be9f5
-    cropInputPointCloud (input_, *coherence_input);
64be9f5
+    this->cropInputPointCloud (input_, *coherence_input);
64be9f5
     
64be9f5
     coherence_->setTargetCloud (coherence_input);
64be9f5
     coherence_->initCompute ();
64be9f5
diff -up ./tracking/include/pcl/tracking/impl/particle_filter_omp.hpp.gcc47 ./tracking/include/pcl/tracking/impl/particle_filter_omp.hpp
64be9f5
--- ./tracking/include/pcl/tracking/impl/particle_filter_omp.hpp.gcc47	2012-02-27 19:36:30.818287347 -0500
64be9f5
+++ ./tracking/include/pcl/tracking/impl/particle_filter_omp.hpp	2012-02-27 19:52:33.441585017 -0500
64be9f5
@@ -8,14 +8,14 @@ pcl::tracking::ParticleFilterOMPTracker<
64be9f5
   {
64be9f5
 #pragma omp parallel for schedule (dynamic, threads_)
64be9f5
     for (int i = 0; i < particle_num_; i++)
64be9f5
-      computeTransformedPointCloudWithoutNormal (particles_->points[i], *transed_reference_vector_[i]);
64be9f5
+      this->computeTransformedPointCloudWithoutNormal (particles_->points[i], *transed_reference_vector_[i]);
64be9f5
     
64be9f5
     PointCloudInPtr coherence_input (new PointCloudIn);
64be9f5
-    cropInputPointCloud (input_, *coherence_input);
64be9f5
+    this->cropInputPointCloud (input_, *coherence_input);
64be9f5
     if (change_counter_ == 0)
64be9f5
     {
64be9f5
       // test change detector
64be9f5
-      if (!use_change_detector_ || testChangeDetection (coherence_input))
64be9f5
+      if (!use_change_detector_ || this->testChangeDetection (coherence_input))
64be9f5
       {
64be9f5
         changed_ = true;
64be9f5
         change_counter_ = change_detector_interval_;
64be9f5
@@ -54,11 +54,11 @@ pcl::tracking::ParticleFilterOMPTracker<
64be9f5
 #pragma omp parallel for schedule (dynamic, threads_)
64be9f5
     for (int i = 0; i < particle_num_; i++)
64be9f5
     {
64be9f5
-      computeTransformedPointCloudWithNormal (particles_->points[i], *indices_list[i], *transed_reference_vector_[i]);
64be9f5
+      this->computeTransformedPointCloudWithNormal (particles_->points[i], *indices_list[i], *transed_reference_vector_[i]);
64be9f5
     }
64be9f5
     
64be9f5
     PointCloudInPtr coherence_input (new PointCloudIn);
64be9f5
-    cropInputPointCloud (input_, *coherence_input);
64be9f5
+    this->cropInputPointCloud (input_, *coherence_input);
64be9f5
     
64be9f5
     coherence_->setTargetCloud (coherence_input);
64be9f5
     coherence_->initCompute ();