Skip to content

Commit

Permalink
Updating headers
Browse files Browse the repository at this point in the history
  • Loading branch information
David Held committed Jan 5, 2015
1 parent e91d5c1 commit 8e52153
Show file tree
Hide file tree
Showing 23 changed files with 80 additions and 13 deletions.
15 changes: 9 additions & 6 deletions include/precision_tracking/alignment_evaluator.h
@@ -1,10 +1,13 @@
/*
* Created on: Aug 18, 2014
* Author: davheld
*
* Base class for evaluating the probability of different alignments between
* points in the previous and the current frames.
*/
* alignment_evaluator.h
*
* Created on: Aug 18, 2014
* Author: davheld
*
* Base class for evaluating the probability of different alignments between
* points in the previous and the current frames.
*
*/

#ifndef __PRECISION_TRACKING__ALIGNMENT_EVALUATOR_H
#define __PRECISION_TRACKING__ALIGNMENT_EVALUATOR_H
Expand Down
2 changes: 1 addition & 1 deletion include/precision_tracking/density_grid_2d_evaluator.h
@@ -1,5 +1,5 @@
/*
* density_grid_evaluator.h
* density_grid_2d_evaluator.h
*
* Created on: Sep 1, 2013
* Author: davheld
Expand Down
2 changes: 1 addition & 1 deletion include/precision_tracking/density_grid_3d_evaluator.h
@@ -1,5 +1,5 @@
/*
* density_grid_evaluator.h
* density_grid_3d_evaluator.h
*
* Created on: Sep 1, 2013
* Author: davheld
Expand Down
3 changes: 3 additions & 0 deletions include/precision_tracking/down_sampler.h
Expand Up @@ -3,6 +3,9 @@
*
* Created on: May 12, 2014
* Author: davheld
*
* Different methods for down-sampling a point cloud.
*
*/

#ifndef __PRECISION_TRACKING__DOWN_SAMPLER_H_
Expand Down
9 changes: 9 additions & 0 deletions include/precision_tracking/high_res_timer.h
@@ -1,3 +1,12 @@
/*
* high_res_timer.h
*
* Author: Alex Teichman
*
* A class for measuring how long some piece of code takes to run.
*
*/

#ifndef __PRECISION_TRACKING__HIGH_RES_TIMER_H
#define __PRECISION_TRACKING__HIGH_RES_TIMER_H

Expand Down
3 changes: 3 additions & 0 deletions include/precision_tracking/lf_rgbd_6d_evaluator.h
@@ -1,4 +1,6 @@
/*
* lf_rgbd_6d_evaluator.h
*
* Created on: May 1, 2014
* Author: davheld
*
Expand All @@ -10,6 +12,7 @@
*
* Parameters are taken based on the latent surface model from RSS 2014,
* Held, et al.
*
*/

#ifndef __PRECISION_TRACKING__LF_RGBD_6D_EVALUATOR_H_
Expand Down
4 changes: 4 additions & 0 deletions include/precision_tracking/motion_model.h
Expand Up @@ -3,6 +3,10 @@
*
* Created on: Jan 23, 2013
* Author: davheld
*
* Motion model used to predict the next location of a given object,
* given a previously estimated motion.
*
*/

#ifndef __PRECISION_TRACKING__MOTION_MODEL_H_
Expand Down
3 changes: 3 additions & 0 deletions include/precision_tracking/precision_tracker.h
Expand Up @@ -3,6 +3,9 @@
*
* Created on: May 12, 2014
* Author: davheld
*
* Main class for performing the precision tracking.
*
*/

#ifndef __PRECISION_TRACKING__PRECISION_TRACKER_H_
Expand Down
3 changes: 3 additions & 0 deletions include/precision_tracking/scored_transform.h
Expand Up @@ -3,6 +3,9 @@
*
* Created on: Sep 17, 2013
* Author: davheld
*
* Classes representing point cloud transforms and associated metadata.
*
*/

#ifndef __PRECISION_TRACKING__SCORED_TRANSFORM_H_
Expand Down
9 changes: 9 additions & 0 deletions include/precision_tracking/track_manager_color.h
@@ -1,3 +1,12 @@
/*
* track_manager_color.h
*
* Author: Alex Teichman
*
* I/O functionality for reading/writing a sequence of point clouds to disk.
*
*/

#ifndef __PRECISION_TRACKING__TRACK_MANAGER_COLOR_H
#define __PRECISION_TRACKING__TRACK_MANAGER_COLOR_H

Expand Down
4 changes: 4 additions & 0 deletions include/precision_tracking/tracker.h
Expand Up @@ -3,6 +3,10 @@
*
* Created on: Nov 20, 2011
* Author: davheld
*
* Main class for tracking; updates the object's motion model and calls
* the appropriate tracker (precision tracker or otherwise).
*
*/

#ifndef __PRECISION_TRACKING__TRACKER_H_
Expand Down
1 change: 1 addition & 0 deletions src/adh_tracker3d.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: Sep 1, 2013
* Author: davheld
*
*/


Expand Down
9 changes: 6 additions & 3 deletions src/alignment_evaluator.cpp
@@ -1,7 +1,10 @@
/*
* Created on: Aug 18, 2014
* Author: davheld
*/
* alignment_evaluator.cpp
*
* Created on: Aug 18, 2014
* Author: davheld
*
*/

#include <precision_tracking/alignment_evaluator.h>

Expand Down
1 change: 1 addition & 0 deletions src/density_grid_2d_evaluator.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: Sep 1, 2013
* Author: davheld
*
*/


Expand Down
1 change: 1 addition & 0 deletions src/density_grid_3d_evaluator.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: Sep 1, 2013
* Author: davheld
*
*/


Expand Down
1 change: 1 addition & 0 deletions src/down_sampler.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: May 12, 2014
* Author: davheld
*
*/

#include <precision_tracking/down_sampler.h>
Expand Down
8 changes: 8 additions & 0 deletions src/high_res_timer.cpp
@@ -1,3 +1,11 @@
/*
* high_res_timer.cpp
*
* Author: Alex Teichman
*
*/


#include <precision_tracking/high_res_timer.h>

namespace precision_tracking {
Expand Down
1 change: 1 addition & 0 deletions src/motion_model.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: Jan 23, 2013
* Author: davheld
*
*/


Expand Down
1 change: 1 addition & 0 deletions src/precision_tracker.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: May 12, 2014
* Author: davheld
*
*/


Expand Down
3 changes: 2 additions & 1 deletion src/scored_transform.cpp
@@ -1,8 +1,9 @@
/*
* ScoredTransform.cpp
* scored_transform.cpp
*
* Created on: Sep 17, 2013
* Author: davheld
*
*/

#include <precision_tracking/scored_transform.h>
Expand Down
7 changes: 7 additions & 0 deletions src/track_manager_color.cpp
@@ -1,3 +1,10 @@
/*
* track_manager_color.cpp
*
* Author: Alex Teichman
*
*/

#include <vector>

#include <pcl/conversions.h>
Expand Down
2 changes: 1 addition & 1 deletion src/tracker.cpp
Expand Up @@ -3,9 +3,9 @@
*
* Created on: Nov 20, 2011
* Author: davheld
*
*/


#include <pcl/common/centroid.h>

#include <precision_tracking/tracker.h>
Expand Down
1 change: 1 addition & 0 deletions test_tracking.cpp
Expand Up @@ -3,6 +3,7 @@
*
* Created on: Jul 30, 2014
* Author: davheld
*
*/

#include <string>
Expand Down

0 comments on commit 8e52153

Please sign in to comment.