circle_collimator.h 331 B

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