Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/java/generator/src/cpp/listconverters.hpp
16354 views
1
// This file is part of OpenCV project.
2
// It is subject to the license terms in the LICENSE file found in the top-level directory
3
// of this distribution and at http://opencv.org/license.html
4
5
// Author: abratchik
6
7
#ifndef LISTCONVERTERS_HPP
8
#define LISTCONVERTERS_HPP
9
10
#include "opencv2/opencv_modules.hpp"
11
#include "opencv2/core.hpp"
12
13
jobject vector_String_to_List(JNIEnv* env, std::vector<cv::String>& vs);
14
15
std::vector<cv::String> List_to_vector_String(JNIEnv* env, jobject list);
16
17
void Copy_vector_String_to_List(JNIEnv* env, std::vector<cv::String>& vs, jobject list);
18
19
#endif /* LISTCONVERTERS_HPP */
20
21