124 Commits (f025e4739a2d4193e2817f9eac54a36f1e366f41)

Author SHA1 Message Date
Vadim Pisarevsky f025e4739a some more doc cleanup 14 years ago
Vadim Pisarevsky 4bb893aa9f the first round of cleaning up the RST docs 14 years ago
Vladimir Dudnik 4f83a06358 added IPP dot product functions. Only 32f data type supported for now (there are accuracy issues in 8u/16s/16u/32s functions which will be fixed in IPP 7.0.3) 14 years ago
Vadim Pisarevsky 24ccbccf63 cleaned RST formatting a bit 14 years ago
Vadim Pisarevsky 371aa08006 OpenCV reference manual (C++ part only for now) is now produced directly from RST, not from TeX. 14 years ago
Vadim Pisarevsky 916690a674 temporily excluded cv::Algorithm 14 years ago
Vadim Pisarevsky c5e3869c32 replaced alloca() (a.k.a. cvStackAlloc) with AutoBuffer or vector() everywhere. cvStackAlloc() is still defined, but we do not need alloca() anymore to compile and run OpenCV (fixes #889 and may be some others) 14 years ago
Vadim Pisarevsky 65a7f13af3 replaced alloca() (a.k.a. cvStackAlloc) with AutoBuffer or vector() everywhere. cvStackAlloc() is still defined, but we do not need alloca() anymore to compile and run OpenCV (fixes #889 and may be some others) 14 years ago
Vadim Pisarevsky d9ab1d2b92 fixed build on Windows with MSVC2010 14 years ago
Vadim Pisarevsky 77529b1fa6 fixed bugs in CartToPolarToCart test 14 years ago
Vadim Pisarevsky 061b49e0b2 reworked nearly all of the OpenCV tests (except for opencv_gpu tests) - they now use the Google Test engine. 14 years ago
Valentina Kustikova d03b89f163 Parallel version of Latent SVM. 14 years ago
Vladimir Dudnik c987b9f180 added IPP Sobel and Sharr filters. Also some minor changes. 14 years ago
Vadim Pisarevsky be4251c143 fixed compile problems when Makefiles are used 14 years ago
Vadim Pisarevsky d2c2c07ad2 updated the new arithmetic tests 14 years ago
Vladimir Dudnik a961cfe135 fixed mistake in integration of IPP Sub functions. Added IPP min/max/absdiff/and/or/xor functions. 14 years ago
Vladimir Dudnik a34f044d19 add IPP Sub operations to arithm.cpp for 8u, 16u, 16s, 32s, 32f, 64f data types. 14 years ago
Vladimir Dudnik abdb139096 add IPP Add operations to arithm.cpp for 8u, 16u, 16s, 32s, 32f, 64f data types. 14 years ago
Vladimir Dudnik 6309b2d08d added OpenCVFindIPP.cmake script, which will look for IPP installation at CMake configuration time. First, IPPROOT environment variable will be tested, if not found script will look at default install places. 14 years ago
Vadim Pisarevsky 2dd0e85264 fixed some build problems 14 years ago
Vadim Pisarevsky 97d9a672cc moved gtest to modules; added some gtest-based tests 14 years ago
Vadim Pisarevsky a379d011fd fixed MatConstIterator<> (ticket #776) 14 years ago
Vladimir Dudnik c9d20500ce cosmetic changes, removed trailing spaces. Added ippGetCpuClocks if IPP is available (important for 64-bit build) 14 years ago
Vladimir Dudnik 50e5456874 cosmetic changes 14 years ago
Alexey Spizhevoy a6d9cce500 added CUFFT errors handling into GPU module 14 years ago
Vadim Pisarevsky 8511b69635 fixed Mat::Mat(Vec|Matx|vector) constructor (ticket #747) 14 years ago
Vadim Pisarevsky da293ee3d9 SSE2 optimization for Bayer->RGB; added Bayer->Gray with SSE2 optimization; corrected some bugs noted in the yahoogroups forum 14 years ago
Vadim Pisarevsky e5564b4388 improved accuracy of determinant(), invert() and solve() on 3x3 matrices (ticket #749) 14 years ago
Vadim Pisarevsky e6aba3e51c turn off SSE2 optimization in cv::exp & cv::log in the case of GCC <=4.1 (not no Mac, where a patched GCC 4.0 is used) 14 years ago
Vadim Pisarevsky 9d8644dee0 turn off SSE2 optimization in cv::exp & cv::log in the case of VS2005 or earlier versions, because of missing _mm_cast* intrinsics (ticket #729) 14 years ago
Vadim Pisarevsky 0de9c9fd3c opencv_zlib renamed back to zlib; make static libs work on Windows 14 years ago
Vadim Pisarevsky 8b4cb1d99c make OpenCVConfig.cmake usable in the case of static libs 14 years ago
Vadim Pisarevsky a7a5dd051a updated version number; removed unnecessary index.html and ChangeLog.htm 14 years ago
Vadim Pisarevsky 56d4f875b4 make watershed demo work correctly 14 years ago
Vadim Pisarevsky 9948ed88b0 fixed crash in cvDrawContours when abs(maxLevel) is too big 14 years ago
Vadim Pisarevsky 84aed5d360 fixed unresolved RotatedRect::boundingRect() error (ticket #725) 14 years ago
Vadim Pisarevsky a937d9d43c unified the coordinate interpretation in RotatedRect (ticket #425) 14 years ago
Vadim Pisarevsky fa1d85bc14 removed obsolete headers from opencv.hpp, fixed 2 gcc warnings and bug in SVBackSubst(). 14 years ago
Vadim Pisarevsky a3dfba36a1 fixed crashes in camshiftdemo sample 14 years ago
Vadim Pisarevsky cbe132cabe several small fixes; added overloaded variant of cv::drawChessboardCorners 14 years ago
Vadim Pisarevsky 8967a1289a fixed problem with missing minMaxIdx (ticket #703) 14 years ago
Vadim Pisarevsky d366c0b2fa fixed canny test; fixed mhi-global test & implementation (hopefully, for the last time); added sse 4.1 & 4.2 support (not working in Xcode for some reason); moved splineInterpolation to color.cpp; fixed a few bugs in documentation 14 years ago
Vadim Pisarevsky f5e5b677c9 added hconcat & vconcat functions for joining matrices; moved some inline functions out of the headers; fixed several bugs in documentation; removed MatND from docs 14 years ago
Vadim Pisarevsky 3a8df6034f fixes Mat::empty() and Mat::create() in the case of zero sizes (ticket #691) 14 years ago
Vadim Pisarevsky de4f1aeb06 fixed some GCC 4.4 warnings 14 years ago
Vadim Pisarevsky fd7b058b8b DataType::generic renamed to DataType::generic_type (ticket #681) 14 years ago
Vadim Pisarevsky 9b8c712a81 added operator != for some basic structures (ticket #678) 14 years ago
Anatoly Baksheev edff674105 added default detector for winSize(64,128) for hog on gpu 14 years ago
Vadim Pisarevsky 08e9d85582 removed cv prefix 14 years ago
Vadim Pisarevsky 08b7855edc extended out << mat/vec operators; added opencv license 14 years ago