Renesas / opencv-lib

Dependents:   RZ_A2M_Mbed_samples

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ovx.hpp Source File

ovx.hpp

00001 // This file is part of OpenCV project.
00002 // It is subject to the license terms in the LICENSE file found in the top-level directory
00003 // of this distribution and at http://opencv.org/license.html.
00004 
00005 // Copyright (C) 2016, Intel Corporation, all rights reserved.
00006 // Third party copyrights are property of their respective owners.
00007 
00008 // OpenVX related definitions and declarations
00009 
00010 #pragma once
00011 #ifndef OPENCV_OVX_HPP
00012 #define OPENCV_OVX_HPP
00013 
00014 #include "cvdef.h"
00015 
00016 namespace cv
00017 {
00018 /// Check if use of OpenVX is possible
00019 CV_EXPORTS_W bool haveOpenVX();
00020 
00021 /// Check if use of OpenVX is enabled
00022 CV_EXPORTS_W bool useOpenVX();
00023 
00024 /// Enable/disable use of OpenVX
00025 CV_EXPORTS_W void setUseOpenVX(bool flag);
00026 } // namespace cv
00027 
00028 #endif // OPENCV_OVX_HPP