hc
2024-05-10 23fa18eaa71266feff7ba8d83022d9e1cc83c65a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// This file is part of OpenCV project.
// It is subject to the license terms in the LICENSE file found in the top-level directory
// of this distribution and at http://opencv.org/license.html.
 
// Copyright (C) 2016, Intel Corporation, all rights reserved.
// Third party copyrights are property of their respective owners.
 
// OpenVX related definitions and declarations
 
#pragma once
#ifndef OPENCV_OVX_HPP
#define OPENCV_OVX_HPP
 
#include "cvdef.h"
 
namespace cv
{
/// Check if use of OpenVX is possible
CV_EXPORTS_W bool haveOpenVX();
 
/// Check if use of OpenVX is enabled
CV_EXPORTS_W bool useOpenVX();
 
/// Enable/disable use of OpenVX
CV_EXPORTS_W void setUseOpenVX(bool flag);
} // namespace cv
 
#endif // OPENCV_OVX_HPP