/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/core/src/parallel_impl.hpp
17 строк
555 B
Alexander Alekhin
core: fix pthreads performance
26 янв 2018, 07:09
26 янв 2018, 07:09
c49d5d5
Код
Авторство
О чём код?
// 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. #ifndef OPENCV_CORE_PARALLEL_IMPL_HPP #define OPENCV_CORE_PARALLEL_IMPL_HPP namespace cv { unsigned defaultNumberOfThreads(); void parallel_for_pthreads(const Range& range, const ParallelLoopBody& body, double nstripes); size_t parallel_pthreads_get_threads_num(); void parallel_pthreads_set_threads_num(int num); } #endif // OPENCV_CORE_PARALLEL_IMPL_HPP