LArOpenCV  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
ToyImageCluster.h
Go to the documentation of this file.
1 
14 #ifndef __TOYIMAGECLUSTER_H__
15 #define __TOYIMAGECLUSTER_H__
16 
17 #include "ImageClusterBase.h"
18 
19 namespace larcv {
25 
26  public:
27 
29  ToyImageCluster(const std::string name="ToyImageCluster") : ImageClusterBase(name)
30  {}
31 
34 
35  protected:
36 
38  void _Configure_(const ::fcllite::PSet &pset);
39 
42  const ::cv::Mat& img,
43  larcv::ImageMeta& meta);
44 
45  private:
46 
47  std::vector<double> _canny_params;
48 
49  };
50 
56  public:
62  ImageClusterBase* create(const std::string instance_name) { return new ToyImageCluster(instance_name); }
63  };
66 }
67 #endif
68  // end of doxygen group
69