Main Page | Namespace List | Class Hierarchy | Alphabetical List | Data Structures | Directories | File List | Namespace Members | Data Fields | Globals

VisualTracker.h

Go to the documentation of this file.
00001 /* Copyright (C) 2005 Pierre Moisan (Pierre.Moisan@USherbrooke.ca) 
00002 
00003    This library is free software; you can redistribute it and/or
00004    modify it under the terms of the GNU Lesser General Public
00005    License as published by the Free Software Foundation; either
00006    version 2.1 of the License, or (at your option) any later version.
00007    
00008    This library is distributed in the hope that it will be useful,
00009    but WITHOUT ANY WARRANTY; without even the implied warranty of
00010    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00011    Lesser General Public License for more details.
00012    
00013    You should have received a copy of the GNU Lesser General Public
00014    License along with this library; if not, write to the Free Software
00015    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00016 */
00017 
00018 #ifndef _VISUALTRACKER_H_
00019 #define _VISUALTRACKER_H_
00020 
00021 #include "BufferedNode.h"
00022 #include <iostream>
00023 #include "Image.h"
00024 #include "cv.h"
00025 #include "VisualFeatureDesc.h"
00026 #include "VisualROI.h"
00027 #include "VisualTarget.h"
00028 
00029 namespace RobotFlow {
00030 
00031 class VisualTracker : public FD::BufferedNode
00032 {
00033 public:
00034         VisualTracker()
00035         {
00036         
00037         }
00038         
00039         VisualTracker(std::string nodeName, FD::ParameterSet params)
00040         : BufferedNode(nodeName, params)
00041         {
00042         
00043         }
00044 
00045         virtual ~VisualTracker()
00046         {
00047         
00048         }
00049 
00050         // Default routine to print a VisualTracker object to an output stream
00051         virtual void printOn(std::ostream &out) const = 0;
00052 
00053         // Default routine to read a VisualTracker object from an input stream
00054         virtual void readFrom(std::istream &in) = 0;
00055         
00056         virtual void calculate(int output_id, int count, FD::Buffer &out) = 0;
00057 
00058         //virtual void TrackTarget() = 0;
00059 };
00060 
00061 }
00062 
00063 #endif

Generated on Wed Oct 5 14:36:12 2005 for RobotFlow by  doxygen 1.4.4