- 07 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
- VFW - QuickTime/QtKit - Unicap - GPL, no active support: https://github.com/unicap/unicap - DC1394 (1st version) / CMU1394
-
- 29 Oct, 2018 1 commit
-
-
WuZhiwen authored
* dnn: Add a Vulkan based backend This commit adds a new backend "DNN_BACKEND_VKCOM" and a new target "DNN_TARGET_VULKAN". VKCOM means vulkan based computation library. This backend uses Vulkan API and SPIR-V shaders to do the inference computation for layers. The layer types that implemented in DNN_BACKEND_VKCOM include: Conv, Concat, ReLU, LRN, PriorBox, Softmax, MaxPooling, AvePooling, Permute This is just a beginning work for Vulkan in OpenCV DNN, more layer types will be supported and performance tuning is on the way. Signed-off-by:
Wu Zhiwen <zhiwen.wu@intel.com> * dnn/vulkan: Add FindVulkan.cmake to detect Vulkan SDK In order to build dnn with Vulkan support, need installing Vulkan SDK and setting environment variable "VULKAN_SDK" and add "-DWITH_VULKAN=ON" to cmake command. You can download Vulkan SDK from: https://vulkan.lunarg.com/sdk/home#linux For how to install, see https://vulkan.lunarg.com/doc/sdk/latest/linux/getting_started.html https://vulkan.lunarg.com/doc/sdk/latest/windows/getting_started.html https://vulkan.lunarg.com/doc/sdk/latest/mac/getting_started.html respectively for linux, windows and mac. To run the vulkan backend, also need installing mesa driver. On Ubuntu, use this command 'sudo apt-get install mesa-vulkan-drivers' To test, use command '$BUILD_DIR/bin/opencv_test_dnn --gtest_filter=*VkCom*' Signed-off-by:
Wu Zhiwen <zhiwen.wu@intel.com> * dnn/Vulkan: dynamically load Vulkan runtime No compile-time dependency on Vulkan library. If Vulkan runtime is unavailable, fallback to CPU path. Use environment "OPENCL_VULKAN_RUNTIME" to specify path to your own vulkan runtime library. Signed-off-by:
Wu Zhiwen <zhiwen.wu@intel.com> * dnn/Vulkan: Add a python script to compile GLSL shaders to SPIR-V shaders The SPIR-V shaders are in format of text-based 32-bit hexadecimal numbers, and inserted into .cpp files as unsigned int32 array. * dnn/Vulkan: Put Vulkan headers into 3rdparty directory and some other fixes Vulkan header files are copied from https://github.com/KhronosGroup/Vulkan-Docs/tree/master/include/vulkan to 3rdparty/include Fix the Copyright declaration issue. Refine OpenCVDetectVulkan.cmake * dnn/Vulkan: Add vulkan backend tests into existing ones. Also fixed some test failures. - Don't use bool variable as uniform for shader - Fix dispathed group number beyond max issue - Bypass "group > 1" convolution. This should be support in future. * dnn/Vulkan: Fix multiple initialization in one thread.
-
- 24 Oct, 2018 1 commit
-
-
maver1 authored
* Updated ICV packages and IPP integration * core(test): minMaxIdx IPP regression test * core(ipp): workaround minMaxIdx problem * core(ipp): workaround meanStdDev() CV_32FC3 buffer overrun * Returned semicolon after CV_INSTRUMENT_REGION_IPP()
-
- 10 Oct, 2018 1 commit
-
-
Alexander Nesterov authored
-
- 31 Aug, 2018 1 commit
-
-
Jakub Golinowski authored
* Add HPX backend for OpenCV implementation Adds hpx backend for cv::parallel_for_() calls respecting the nstripes chunking parameter. C++ code for the backend is added to modules/core/parallel.cpp. Also, the necessary changes to cmake files are introduced. Backend can operate in 2 versions (selectable by cmake build option WITH_HPX_STARTSTOP): hpx (runtime always on) and hpx_startstop (start and stop the backend for each cv::parallel_for_() call) * WIP: Conditionally include hpx_main.hpp to tests in core module Header hpx_main.hpp is included to both core/perf/perf_main.cpp and core/test/test_main.cpp. The changes to cmake files for linking hpx library to above mentioned test executalbles are proposed but have issues. * Add coditional iclusion of hpx_main.hpp to cpp cpu modules * Remove start/stop version of hpx backend
-
- 30 Aug, 2018 1 commit
-
-
Alexander Alekhin authored
except header file with conversion routines (will be removed in OpenCV 4.0)
-
- 17 May, 2018 1 commit
-
-
Pavel Rojtberg authored
it is reusing CAP_INTELPERC* enums as Intel PerC is deprecated and librealsense replaces it.
-
- 13 Apr, 2018 1 commit
-
-
Tomoaki Teshima authored
* remove NVidia and Nvidia * replace Cuda with CUDA * keep the letters for API
-
- 10 Apr, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 23 Aug, 2017 1 commit
-
-
Pavel Vlasov authored
- Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled. - Performance regressions fixes for IPP code paths; - cv::boxFilter integration improvement; - cv::filter2D integration improvement;
-
- 14 Aug, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 26 Jun, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 21 Jun, 2017 1 commit
-
-
Dmitry Kurtaev authored
-
- 20 Jun, 2017 2 commits
-
-
Maksim Shabunin authored
general: - all iterative tests have been replaced with parameterized tests - old-style try..catch tests have been modified to use EXPECT_/ASSERT_ gtest macros - added temporary files cleanup - modified MatComparator error message formatting imgcodecs: - test_grfmt.cpp split to test_jpg.cpp, test_png.cpp, test_tiff.cpp, etc. videoio: - added public HAVE_VIDEO_INPUT, HAVE_VIDEO_OUTPUT definitions to cvconfig.h - built-in MotionJPEG codec could not be tested on some platforms (read_write test was disabled if ffmpeg is off, encoding/decoding was handled by ffmpeg otherwise). - image-related tests moved to imgcodecs (Videoio_Image) - several property get/set tests have been combined into one - added MotionJPEG test video to opencv_extra
-
Maksim Shabunin authored
- cmake dependencies search (WITH_MFX option) - raw H264, H265, MPEG2 encoding and decoding - tests for supported formats
-
- 20 Apr, 2017 1 commit
-
-
Pavel Vlasov authored
-
- 04 Apr, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 13 Feb, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 22 Dec, 2016 1 commit
-
-
Vadim Pisarevsky authored
* moved BLAS/LAPACK detection scripts from opencv_contrib/dnn to the main repository. * trying to fix the bug with undefined symbols sgesdd_ and dgesdd_ * removed extra whitespaces; disabled LAPACK on IOS
-
- 01 Dec, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 27 Nov, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 04 Oct, 2016 1 commit
-
-
mshabunin authored
-
- 09 Sep, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 23 Aug, 2016 1 commit
-
-
yoffy authored
-
- 17 Aug, 2016 1 commit
-
-
Pavel Vlasov authored
-
- 10 Aug, 2016 1 commit
-
-
Vladislav Sovrasov authored
-
- 20 Jul, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 08 Jul, 2016 1 commit
-
-
look4pritam authored
-
- 03 Jun, 2016 1 commit
-
-
Vladislav Sovrasov authored
-
- 01 Feb, 2016 2 commits
-
-
atinfinity authored
-
atinfinity authored
-
- 03 Sep, 2015 1 commit
-
-
Alexey Ershov authored
fixed trailing whitespaces renamed files *vaapi* to *va_intel* changed names vaapi* to va_intel*
-
- 20 Aug, 2015 1 commit
-
-
Alexey Ershov authored
fixed whitespaces fixed issues fixed issue fixed module statement issues fixed access mode added initialization check fixed warning
-
- 30 Jul, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 11 Jun, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 20 May, 2015 1 commit
-
-
Piotr Dobrowolski authored
-
- 02 Mar, 2015 1 commit
-
-
Maxim Kostin authored
- Substituted HAVE_WINRT with WINRT - Fixed compilation issues in ocl.cpp and parallel.cpp - Fixed compiler issue for WP8: "C2678: binary '+' : no operator found which takes a left-hand - Fixed gitignore - Added #ifdef HAVE_OPENCL to remove compiler warnings in ocl.cpp - Used NO_GETENV similar to '3rdparty\libjpeg\jmemmgr.c; - Added ole32.lib for core module (for WindowsStore 8.0 builds) - Made OpenCV_ARCH aware of ARM Signed-off-by:
Maxim Kostin <v-maxkos@microsoft.com>
-
- 23 Jan, 2015 1 commit
-
-
Alexander Alekhin authored
-
- 16 Jul, 2014 1 commit
-
-
Lars Glud authored
-
- 01 Jul, 2014 1 commit
-
-
Marvin Smith authored
-