123456789101112131415161718 |
- #pragma once
- #include "opencv/cv.h"
- #include "basic_struct.h"
- namespace OnLineCard{
- enum result_buffer_state {
- unused,
- identifing,
- identified,
- handling
- };
- struct MyPic
- {
- CString path;
- IplImage *img;
- FEEDER_TYPE m_feeder_type;
- };
- typedef bool(*FPointScanFilter)(const CString&);
- }
|