/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/java/generator/src/cpp/listconverters.hpp
26 строк
852 B
Alexander Alekhin
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
28 янв 2020, 14:26
28 янв 2020, 14:26
560f85f
Код
Авторство
О чём код?
// 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 // Author: abratchik #ifndef LISTCONVERTERS_HPP #define LISTCONVERTERS_HPP #include "opencv2/opencv_modules.hpp" #include "opencv2/core.hpp" jobject vector_String_to_List(JNIEnv* env, std::vector<cv::String>& vs); std::vector<cv::String> List_to_vector_String(JNIEnv* env, jobject list); void Copy_vector_String_to_List(JNIEnv* env, std::vector<cv::String>& vs, jobject list); jobject vector_string_to_List(JNIEnv* env, std::vector<std::string>& vs); std::vector<std::string> List_to_vector_string(JNIEnv* env, jobject list); void Copy_vector_string_to_List(JNIEnv* env, std::vector<std::string>& vs, jobject list); #endif /* LISTCONVERTERS_HPP */