openCV library for Renesas RZ/A

Dependents:   RZ_A2M_Mbed_samples

Committer:
RyoheiHagimoto
Date:
Fri Jan 29 04:53:38 2021 +0000
Revision:
0:0e0631af0305
copied from https://github.com/d-kato/opencv-lib.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
RyoheiHagimoto 0:0e0631af0305 1 #ifndef OPENCV_IMGPROC_HAL_INTERFACE_H
RyoheiHagimoto 0:0e0631af0305 2 #define OPENCV_IMGPROC_HAL_INTERFACE_H
RyoheiHagimoto 0:0e0631af0305 3
RyoheiHagimoto 0:0e0631af0305 4 //! @addtogroup imgproc_hal_interface
RyoheiHagimoto 0:0e0631af0305 5 //! @{
RyoheiHagimoto 0:0e0631af0305 6
RyoheiHagimoto 0:0e0631af0305 7 //! @name Interpolation modes
RyoheiHagimoto 0:0e0631af0305 8 //! @sa cv::InterpolationFlags
RyoheiHagimoto 0:0e0631af0305 9 //! @{
RyoheiHagimoto 0:0e0631af0305 10 #define CV_HAL_INTER_NEAREST 0
RyoheiHagimoto 0:0e0631af0305 11 #define CV_HAL_INTER_LINEAR 1
RyoheiHagimoto 0:0e0631af0305 12 #define CV_HAL_INTER_CUBIC 2
RyoheiHagimoto 0:0e0631af0305 13 #define CV_HAL_INTER_AREA 3
RyoheiHagimoto 0:0e0631af0305 14 #define CV_HAL_INTER_LANCZOS4 4
RyoheiHagimoto 0:0e0631af0305 15 //! @}
RyoheiHagimoto 0:0e0631af0305 16
RyoheiHagimoto 0:0e0631af0305 17 //! @name Morphology operations
RyoheiHagimoto 0:0e0631af0305 18 //! @sa cv::MorphTypes
RyoheiHagimoto 0:0e0631af0305 19 //! @{
RyoheiHagimoto 0:0e0631af0305 20 #define MORPH_ERODE 0
RyoheiHagimoto 0:0e0631af0305 21 #define MORPH_DILATE 1
RyoheiHagimoto 0:0e0631af0305 22 //! @}
RyoheiHagimoto 0:0e0631af0305 23
RyoheiHagimoto 0:0e0631af0305 24 //! @}
RyoheiHagimoto 0:0e0631af0305 25
RyoheiHagimoto 0:0e0631af0305 26 #endif