LArOpenCV  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
Utilities.h
Go to the documentation of this file.
1 #ifndef __IMAGECLUSTER_UTILITIES_H__
2 #define __IMAGECLUSTER_UTILITIES_H__
3 
4 #include "ImageClusterTypes.h"
5 
6 namespace larcv {
7 
8  ::cv::Rect BoundingBox(const larcv::Contour_t& cluster);
9 
10  ::cv::Mat CreateSubMatRef(const larcv::Contour_t& cluster, cv::Mat& img);
11 
12  ::cv::Mat CreateSubMatCopy(const larcv::Contour_t& cluster, const cv::Mat& img);
13 
14 }
15 #endif