vendor: OpenCV 5.0.0 snapshot at 755e50675d97db9b7d449d8bd6b09888646f6c6e
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
// 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) 2020 by Archit Rungta
|
||||
|
||||
// This header files hacks into the mapping code of CxxWrap to support automatic conversion between types from OpenCV and Julia
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "jlcxx/jlcxx.hpp"
|
||||
#include "jlcxx/functions.hpp"
|
||||
#include "jlcxx/stl.hpp"
|
||||
#include "jlcxx/array.hpp"
|
||||
#include "jlcxx/tuple.hpp"
|
||||
|
||||
#include <opencv2/core.hpp>
|
||||
#include <opencv2/core/utility.hpp>
|
||||
#include <opencv2/core/ocl.hpp>
|
||||
|
||||
#include <opencv2/core/bindings_utils.hpp>
|
||||
|
||||
|
||||
#include <opencv2/opencv_modules.hpp>
|
||||
#include <type_traits>
|
||||
|
||||
|
||||
using namespace cv;
|
||||
using namespace std;
|
||||
using namespace jlcxx;
|
||||
|
||||
#ifdef HAVE_OPENCV_HIGHGUI
|
||||
#include <opencv2/highgui.hpp>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_IMGPROC
|
||||
#include <opencv2/imgproc.hpp>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_VIDEOIO
|
||||
#include <opencv2/videoio.hpp>
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_FEATURES
|
||||
#include <opencv2/features.hpp>
|
||||
typedef SimpleBlobDetector::Params SimpleBlobDetector_Params;
|
||||
typedef AKAZE::DescriptorType AKAZE_DescriptorType;
|
||||
typedef AgastFeatureDetector::DetectorType AgastFeatureDetector_DetectorType;
|
||||
typedef FastFeatureDetector::DetectorType FastFeatureDetector_DetectorType;
|
||||
typedef DescriptorMatcher::MatcherType DescriptorMatcher_MatcherType;
|
||||
typedef KAZE::DiffusivityType KAZE_DiffusivityType;
|
||||
typedef ORB::ScoreType ORB_ScoreType;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_XOBJDETECT
|
||||
|
||||
#include <opencv2/xobjdetect.hpp>
|
||||
|
||||
typedef HOGDescriptor::HistogramNormType HOGDescriptor_HistogramNormType;
|
||||
typedef HOGDescriptor::DescriptorStorageFormat HOGDescriptor_DescriptorStorageFormat;
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_FLANN
|
||||
typedef cvflann::flann_distance_t cvflann_flann_distance_t;
|
||||
typedef cvflann::flann_algorithm_t cvflann_flann_algorithm_t;
|
||||
|
||||
typedef flann::IndexParams flann_IndexParams;
|
||||
typedef flann::SearchParams flann_SearchParams;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_DNN
|
||||
|
||||
#include <opencv2/dnn.hpp>
|
||||
typedef cv::dnn::DictValue LayerId;
|
||||
typedef cv::dnn::Backend dnn_Backend;
|
||||
typedef cv::dnn::Target dnn_Target;
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_OPENCV_CALIB3D
|
||||
|
||||
#include <opencv2/calib3d.hpp>
|
||||
#endif
|
||||
|
||||
template <typename C>
|
||||
struct get_template_type;
|
||||
template <typename C>
|
||||
struct get_template_type_vec;
|
||||
|
||||
template <template <typename> class C, typename T>
|
||||
struct get_template_type<C<T>> {
|
||||
using type = T;
|
||||
};
|
||||
|
||||
template <template <typename, int> class C, typename T, int N>
|
||||
struct get_template_type_vec<C<T, N>> {
|
||||
using type = T;
|
||||
int dim = N;
|
||||
};
|
||||
|
||||
template<typename T, bool v>
|
||||
struct force_enum{};
|
||||
template<typename T>
|
||||
struct force_enum<T, false>{
|
||||
using Type = T;
|
||||
};
|
||||
template<typename T>
|
||||
struct force_enum<T, true>{
|
||||
using Type = int64_t;
|
||||
};
|
||||
|
||||
template<typename T>
|
||||
struct force_enum_int{
|
||||
using Type = typename force_enum<T, std::is_enum<T>::value>::Type;
|
||||
};
|
||||
|
||||
typedef vector<Mat> vector_Mat;
|
||||
typedef vector<UMat> vector_UMat;
|
||||
|
||||
typedef char* c_string;
|
||||
|
||||
|
||||
#include "jlcv_types.hpp"
|
||||
Reference in New Issue
Block a user