| 1234567891011 |
- #ifndef CIRCULAR_COLLIMATOR_H
- #define CIRCULAR_COLLIMATOR_H
- namespace CircleDetector
- {
- // cut_pixels = -1 ,开启自动内缩
- // cut_pixels != -1 ,使用cut_pixels进行内缩
- int Circular_Collimator_Recognition(unsigned short* input, unsigned char* output, int Width, int Height, int cut_pixels = 0);
- }
- #endif // CIRCULAR_COLLIMATOR_H
|