Renesas / opencv-lib

Dependents:   RZ_A2M_Mbed_samples

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers interface.h Source File

interface.h

00001 #ifndef OPENCV_IMGPROC_HAL_INTERFACE_H
00002 #define OPENCV_IMGPROC_HAL_INTERFACE_H
00003 
00004 //! @addtogroup imgproc_hal_interface
00005 //! @{
00006 
00007 //! @name Interpolation modes
00008 //! @sa cv::InterpolationFlags
00009 //! @{
00010 #define CV_HAL_INTER_NEAREST 0
00011 #define CV_HAL_INTER_LINEAR 1
00012 #define CV_HAL_INTER_CUBIC 2
00013 #define CV_HAL_INTER_AREA 3
00014 #define CV_HAL_INTER_LANCZOS4 4
00015 //! @}
00016 
00017 //! @name Morphology operations
00018 //! @sa cv::MorphTypes
00019 //! @{
00020 #define MORPH_ERODE 0
00021 #define MORPH_DILATE 1
00022 //! @}
00023 
00024 //! @}
00025 
00026 #endif