Changeset 47 in flair-dev for trunk/include/FlairVisionFilter/VisionFilter.h
- Timestamp:
- Jan 19, 2017, 3:06:46 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairVisionFilter/VisionFilter.h
r45 r47 12 12 void CloseVisionFilter(void); 13 13 14 void saveToJpeg(IplImage* src_img,std::string filename,unsigned char compression_level=95); 14 enum class PictureFormat_t { 15 Gray,/*!< gray 8 bits */ 16 RGB,/*!< rgb 24 bits */ 17 YUV_422ile,/*!< YUV 4:2:2 interleaved */ 18 YUV_422p,/*!< YUV 4:2:2 planer */ 19 } ; 20 21 void saveToJpeg(IplImage* src_img,std::string filename,PictureFormat_t input_format,PictureFormat_t output_format,unsigned char compression_level=95);
Note:
See TracChangeset
for help on using the changeset viewer.