- 30 Oct, 2014 1 commit
-
-
Vadim Pisarevsky authored
-
- 27 Oct, 2014 2 commits
-
-
Maksim Shabunin authored
-
Dinar Ahmatnurov authored
ocl: Change static variable order in cl_context.cpp to avoid crashes during destruction ContextImpl::currentContext contains a reference to one of the DeviceInfoImpl objects from: static std::vector<DeviceInfoImpl> global_devices; ContextImpl::currentContext is destroyed in the destructor for the statically defined object __module, and relies on its DeviceInfoImpl reference to query some hardware features while being destroyed. This means that we need to ensure that the global_devices vector is destroyed affter __module, otherwise ContextImpl::currentContext's DeviceInfoImpl reference will no longer be valid when __module is destroyed. Since these variables are all confined to a single compilation unit, they will be destruct from bottom to top, so we need to make sure that __module is the bottom definition so it can be destroyed first. iOS: fix crash from overrelease in UIImageToMat viz: fixed memory leak, issue 3961 fix installation layout for debian packages: Install symlinks to shared libraries as a part of development package, not runtime package. It is default behavior for debian packages. Fix test name. TIFF loader: Allocate large enough buffer when (bpp * ncn) > 8. TIFF loader: Pass buffer size to read functions. replace not ascii and not cyrillic symbols with '?'; add test for putText; fix warning; minor fixes;
-
- 26 Oct, 2014 4 commits
-
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
- 23 Oct, 2014 6 commits
-
-
Vladislav Vinogradov authored
-
Vladislav Vinogradov authored
-
Vladislav Vinogradov authored
-
Maksim Shabunin authored
- updated existing Doxyfile.in - added corresponding cmake instructions - added some specific files (layout, icon) - clean existing doxygen warnings Conflicts: CMakeLists.txt doc/CMakeLists.txt modules/core/include/opencv2/core.hpp modules/core/include/opencv2/core/base.hpp modules/core/include/opencv2/core/cuda.inl.hpp modules/core/include/opencv2/core/mat.hpp modules/core/include/opencv2/core/matx.hpp modules/core/include/opencv2/core/types.hpp modules/flann/include/opencv2/flann/lsh_table.h modules/imgproc/include/opencv2/imgproc.hpp
-
Alexander Smorkalov authored
-
Maksim Shabunin authored
- changed image comparison technique - removed old assert statements
-
- 21 Oct, 2014 5 commits
-
-
Vladislav Vinogradov authored
-
Vladislav Vinogradov authored
-
Vladislav Vinogradov authored
opencv_test_viz creates windows and waits until user close them, it is not appropriate for automatic testing
-
Vladislav Vinogradov authored
* use new syntax introduced in CMake 2.8.0 * set OPENCV_TEST_DATA_PATH enviroment property
-
Vladislav Vinogradov authored
-
- 20 Oct, 2014 1 commit
-
-
Vadim Pisarevsky authored
-
- 18 Oct, 2014 6 commits
-
-
Andreas Stührk authored
-
Andreas Stührk authored
-
Andreas Stührk authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Anatoly Baksheev authored
-
- 17 Oct, 2014 3 commits
-
-
Vadim Pisarevsky authored
-
Vladislav Vinogradov authored
Install symlinks to shared libraries as a part of development package, not runtime package. It is default behavior for debian packages.
-
Thomas Weisbach authored
-
- 16 Oct, 2014 1 commit
-
-
Vadim Pisarevsky authored
-
- 15 Oct, 2014 1 commit
-
-
Tom Stellard authored
ContextImpl::currentContext contains a reference to one of the DeviceInfoImpl objects from: static std::vector<DeviceInfoImpl> global_devices; ContextImpl::currentContext is destroyed in the destructor for the statically defined object __module, and relies on its DeviceInfoImpl reference to query some hardware features while being destroyed. This means that we need to ensure that the global_devices vector is destroyed affter __module, otherwise ContextImpl::currentContext's DeviceInfoImpl reference will no longer be valid when __module is destroyed. Since these variables are all confined to a single compilation unit, they will be destruct from bottom to top, so we need to make sure that __module is the bottom definition so it can be destroyed first.
-
- 12 Oct, 2014 2 commits
-
-
Vadim Pisarevsky authored
-
Samuel Martin authored
This bug was triggered by Buildroot autobuilders [1,2], causing this kind of failures [3,4]: [ 14%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/system.cpp.o /home/test/autobuild/instance-0/output/build/opencv-2.4.10/modules/core/src/system.cpp: In function '(static initializers for /home/test/autobuild/instance-0/output/build/opencv-2.4.10/modules/core/src/system.cpp)': /home/test/autobuild/instance-0/output/build/opencv-2.4.10/modules/core/src/system.cpp:280:10: error: inconsistent operand constraints in an 'asm' make[3]: *** [modules/core/CMakeFiles/opencv_core.dir/src/system.cpp.o] Error 1 [1] http://buildroot.org/ [2] http://autobuild.buildroot.org/ [3] http://autobuild.buildroot.org/?reason=opencv-2.4.10 [4] http://autobuild.buildroot.org/results/483/4838285b25d6293a5cf0bb9eadd5040a7c75d766/build-end.logSigned-off-by:
Samuel Martin <s.martin49@gmail.com>
-
- 11 Oct, 2014 5 commits
-
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Vadim Pisarevsky authored
-
Andrey Kamaev authored
-
- 10 Oct, 2014 3 commits
-
-
Jonas Vautherin authored
-
Dinar Ahmatnurov authored
-
Vadim Pisarevsky authored
-