Changeset 123 in flair-src for trunk/lib/FlairVisionFilter/src/VisionFilter.h
- Timestamp:
- Jan 10, 2017, 3:56:53 PM (8 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairVisionFilter/src/VisionFilter.h
r122 r123 1 1 #include <string> 2 #include <cxtypes.h> 2 3 3 4 /*! 4 * \brief DSP setup5 * \brief InitVisionFilter 5 6 * 6 * Setup DSP executable file. \n 7 * If this method is not called, no DSP processing will be available. \n 8 * 9 * \param file DSP executable file 10 * \param globalTimeoutMs timeout for all DSP functions, in ms (timeout is only 11 * used to display a warning. -1 to disable timeout 7 * \return true 12 8 */ 13 void SetupDSP(std::string file,int globalTimeoutMs=-1);14 9 10 bool InitVisionFilter(std::string args); 15 11 16 void CloseDSP(void); 12 void CloseVisionFilter(void); 13 14 void saveToJpeg(IplImage* src_img,std::string filename,unsigned char compression_level=95);
Note:
See TracChangeset
for help on using the changeset viewer.