/
Alx89
/
OpenCV
Обзор
Документация
Войти
/
Alx89
/
OpenCV
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
modules/core/src/stat.dispatch.cpp
28 строк
734 B
Hamdi Sahloul
Add semicolons after `CV_INSTRUMENT` macros
14 сен 2018, 00:45
14 сен 2018, 00:45
5d54def
Код
Авторство
О чём код?
// 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. #include "precomp.hpp" #include "stat.simd.hpp" #include "stat.simd_declarations.hpp" // defines CV_CPU_DISPATCH_MODES_ALL=AVX2,...,BASELINE based on CMakeLists.txt content namespace cv { namespace hal { int normHamming(const uchar* a, int n) { CV_INSTRUMENT_REGION(); CV_CPU_DISPATCH(normHamming, (a, n), CV_CPU_DISPATCH_MODES_ALL); } int normHamming(const uchar* a, const uchar* b, int n) { CV_INSTRUMENT_REGION(); CV_CPU_DISPATCH(normHamming, (a, b, n), CV_CPU_DISPATCH_MODES_ALL); } }} //cv::hal