From: Dominic L. <ma...@us...> - 2005-04-12 19:39:10
|
Update of /cvsroot/robotflow/RobotFlow/Vision/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9131 Modified Files: ColorHistExtraction.cc MeanShiftTracker.cc VisualHistogramDesc.cc VisualROI.cc VisualTarget.cc VisualTargetManager.cc Log Message: adding namespace RobotFlow Index: VisualTarget.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualTarget.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** VisualTarget.cc 12 Apr 2005 19:34:03 -0000 1.1 --- VisualTarget.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 18,22 **** #include "VisualTarget.h" ! DECLARE_TYPE(VisualTarget<double>) --- 18,24 ---- #include "VisualTarget.h" ! namespace RobotFlow { + DECLARE_TYPE(VisualTarget<double>) + }//namespace RobotFlow Index: VisualTargetManager.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualTargetManager.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** VisualTargetManager.cc 12 Apr 2005 19:34:03 -0000 1.1 --- VisualTargetManager.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 17,20 **** --- 17,23 ---- #include "VisualTargetManager.h" + + namespace RobotFlow { + DECLARE_NODE(VisualTargetManager) DECLARE_TYPE(VisualTargetManager) *************** *** 445,446 **** --- 448,451 ---- } } + + }//namespace RobotFlow Index: ColorHistExtraction.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/ColorHistExtraction.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ColorHistExtraction.cc 12 Apr 2005 19:34:02 -0000 1.1 --- ColorHistExtraction.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 17,20 **** --- 17,22 ---- #include "ColorHistExtraction.h" + namespace RobotFlow { + DECLARE_NODE(ColorHistExtraction) DECLARE_TYPE(ColorHistExtraction) *************** *** 78,82 **** * END*/ ! // --- 80,84 ---- * END*/ ! // *************** *** 353,354 **** --- 355,358 ---- m_init = true; } + + }//namespace RobotFlow Index: VisualROI.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualROI.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** VisualROI.cc 12 Apr 2005 19:34:03 -0000 1.1 --- VisualROI.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 1,4 **** --- 1,6 ---- #include "VisualROI.h" + namespace RobotFlow { + DECLARE_TYPE(VisualROI) *************** *** 471,472 **** --- 473,476 ---- return numPixels; } + + }//namespace RobotFlow Index: MeanShiftTracker.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/MeanShiftTracker.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MeanShiftTracker.cc 12 Apr 2005 19:34:02 -0000 1.1 --- MeanShiftTracker.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 17,20 **** --- 17,23 ---- #include "MeanShiftTracker.h" + + namespace RobotFlow { + DECLARE_NODE(MeanShiftTracker) DECLARE_TYPE(MeanShiftTracker) *************** *** 369,371 **** // end for ! --- 372,374 ---- // end for ! }//namespace RobotFlow Index: VisualHistogramDesc.cc =================================================================== RCS file: /cvsroot/robotflow/RobotFlow/Vision/src/VisualHistogramDesc.cc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** VisualHistogramDesc.cc 12 Apr 2005 19:34:03 -0000 1.1 --- VisualHistogramDesc.cc 12 Apr 2005 19:38:59 -0000 1.2 *************** *** 18,21 **** --- 18,23 ---- #include "VisualHistogramDesc.h" + namespace RobotFlow { + // // Declaring known types *************** *** 26,27 **** --- 28,30 ---- ("<VisualHistogramDesc<double,unsigned int>>", new ObjectFactory<VisualHistogramDesc<double, unsigned int> >("<VisualHistogramDesc<double,unsigned int>>")); + }//namespace RobotFlow |