forked from kvtsang/Supera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageMetaFromConfig.h
More file actions
56 lines (40 loc) · 1.05 KB
/
ImageMetaFromConfig.h
File metadata and controls
56 lines (40 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/**
* \file ImageMetaFromConfig.h
*
* \ingroup Package_Name
*
* \brief Class def header for a class ImageMetaFromConfig
*
* @author kazuhiro
*/
/** \addtogroup Package_Name
@{*/
#ifndef __IMAGEMETAFROMCONFIG_H__
#define __IMAGEMETAFROMCONFIG_H__
#include "FMWKInterface.h"
#include "ImageMetaMakerBase.h"
namespace supera {
/**
\class ImageMetaFromConfig
User defined class ImageMetaFromConfig ... these comments are used to generate
doxygen documentation!
*/
class ImageMetaFromConfig : public ImageMetaMakerBase {
public:
/// Default constructor
ImageMetaFromConfig() : ImageMetaMakerBase("ImageMetaFromConfig")
{}
/// Default destructor
~ImageMetaFromConfig(){}
void configure(const supera::Config_t&);
const std::vector<larcv::ImageMeta>& Meta() const
{ return _meta_v; }
const larcv::Voxel3DMeta& Meta3D() const
{ return _meta3d; }
private:
std::vector<larcv::ImageMeta> _meta_v;
larcv::Voxel3DMeta _meta3d;
};
}
#endif
/** @} */ // end of doxygen group