interface.h 495 B

1234567891011121314151617181920212223242526
  1. #ifndef OPENCV_IMGPROC_HAL_INTERFACE_H
  2. #define OPENCV_IMGPROC_HAL_INTERFACE_H
  3. //! @addtogroup imgproc_hal_interface
  4. //! @{
  5. //! @name Interpolation modes
  6. //! @sa cv::InterpolationFlags
  7. //! @{
  8. #define CV_HAL_INTER_NEAREST 0
  9. #define CV_HAL_INTER_LINEAR 1
  10. #define CV_HAL_INTER_CUBIC 2
  11. #define CV_HAL_INTER_AREA 3
  12. #define CV_HAL_INTER_LANCZOS4 4
  13. //! @}
  14. //! @name Morphology operations
  15. //! @sa cv::MorphTypes
  16. //! @{
  17. #define CV_HAL_MORPH_ERODE 0
  18. #define CV_HAL_MORPH_DILATE 1
  19. //! @}
  20. //! @}
  21. #endif