IPSDK  4_1_0_2
IPSDK : Image Processing Software Development Kit
ImageSegmentTypes.h
Go to the documentation of this file.
1 // ImageSegmentTypes.h:
3 // --------------------
4 //
14 
15 #ifndef __IPSDKIMAGE_IMAGESEGMENTTYPES_H__
16 #define __IPSDKIMAGE_IMAGESEGMENTTYPES_H__
17 
18 #include <vector>
19 
20 namespace ipsdk {
21 namespace image {
22 
23 class ImageSegmentInfo;
25 
28 
30 typedef std::vector<ImageSegmentInfo> SegInfoColl;
31 
33 typedef std::vector<ImageRowSegmentInfo> RowSegInfoColl;
34 
37 
38 } // end of namespace image
39 } // end of namespace ipsdk
40 
41 #endif // __IPSDKIMAGE_IMAGESEGMENTTYPES_H__
Main namespace for IPSDK library.
Definition: AlgorithmFunctionEfficiency.h:22
std::vector< ImageSegmentInfo > SegInfoColl
collection of image segment informations
Definition: ImageSegmentTypes.h:24
Class used to store image row segment informations.
Definition: ImageRowSegmentInfo.h:30
std::vector< ImageRowSegmentInfo > RowSegInfoColl
collection of image row segment informations
Definition: ImageSegmentTypes.h:33