1820 Commits (de977cc9c836dd954bc0a737b5aa80621a4f9c72)

Author SHA1 Message Date
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 a7a5dd051a updated version number; removed unnecessary index.html and ChangeLog.htm 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 cbe132cabe several small fixes; added overloaded variant of cv::drawChessboardCorners 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 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
Vadim Pisarevsky 08b7855edc extended out << mat/vec operators; added opencv license 14 years ago
Anatoly Baksheev f2df784830 fixed error reporting in GPU module (exceptions in destructors, etc) 14 years ago
Anatoly Baksheev d7d0754f38 fixed compilation error under nvcc 14 years ago
Ethan Rublee d84b970bf2 adding the Brief descriptor, associated hamming distance functors for bruteforce matching. Also adding cout << cv::Mat functions in core. 14 years ago
Vadim Pisarevsky e15a2ea95a fixed remap with transparent border (ticket #582) 14 years ago
Vadim Pisarevsky 018aba7507 a few small fixes in Matx operators 14 years ago
Vadim Pisarevsky d8ace43753 fixed some more tests on Windows; changed inheritance Matx -> Vec to Vec -> Matx 14 years ago
Vadim Pisarevsky ced8192174 fixed several GCC warnings; fixed crash in kmeans test (because of cv::swap(Mat&a, Mat&b)) (ticket #616) 14 years ago
Vadim Pisarevsky 5b6a755719 almost finished Python wrappers 14 years ago
Vadim Pisarevsky 893fb90b87 extended Python bindings; not merged into cv.cpp yet; and many of the helper functions, like pyopencv_to_*, pyopencv_from_* etc. are still missing 14 years ago
Vadim Pisarevsky 83f6085773 added more helper macros to the function declarations, to assist the Python wrapper generator. Fixed memleak in Mat::operator()(Range,Range) and the related functions (Mat::row, Mat::col etc.) 14 years ago
Stefano Fabri 4c29ffecc0 Reverting, release beahviour was changed. Investigating on deallocate() issue 14 years ago
Stefano Fabri e320e4e69c Linking doesn't find deallocate() 14 years ago
Vadim Pisarevsky 969855d72a fixed MatConstIterator::operator *() (the bug caused "operations" test failure; ticket #613) 14 years ago
Vadim Pisarevsky ebb9c61546 fixed bug with Mat::dataend initialization. Now morph-ex test passes; Also fixed CV_Assert() implementation 14 years ago
Vadim Pisarevsky ccb1e5fac0 added assert to MatConstIterator::pos() 14 years ago
Victor Erukhimov 8ff0d754ac Adding back MatConstIterator_::pos implementation 14 years ago
Vadim Pisarevsky be016a75df some fixes due to the changed policy in DataType & DataDepth handling 14 years ago
Vadim Pisarevsky f7bebe8270 fixed several warnings; modified size comparison: m1.size() == m2.size() => m1.size == m2.size 14 years ago
Vadim Pisarevsky 8af83e6d37 fixed a few bugs in: Mat::reshape, Mat(CvMat*) constructor, element access, copying nd array etc. 14 years ago
Maria Dimashova a594f01a3e fixed cast of Mat to vector<Mat> (leads to compile error now) 14 years ago
Vadim Pisarevsky 02885b8b49 added Mat::push_back, pop_back and related operations; enabled reading/writing/creating/copying matrices with zero dimensions. 14 years ago
Vadim Pisarevsky 1b1eab8e67 added helper macros to the function declarations 14 years ago
Marius Muja 16b1f61c83 Updated FLANN to version 1.5 14 years ago
Vadim Pisarevsky 541441e85b united cv::Mat and cv::MatND 14 years ago
Vadim Pisarevsky e812a02c0b remove #include <Eigen/Core> from eigen.hpp 14 years ago
Vadim Pisarevsky 1a2fee0d56 include Eigen2/3 headers optionally, for greater flexibility 14 years ago
Vadim Pisarevsky ec314cf232 moved the matrix expressions from mat.hpp to matop.cpp. That should improve build times 14 years ago
Anatoly Baksheev 1387bfcde0 added GPU implementation of morphology functions (using NPP) and tests for it. 14 years ago
Vadim Pisarevsky eb6994f58a fixed Mat(const Matx&) constructor; added SVD(Matx) 14 years ago
Vadim Pisarevsky 3bd00085f7 made MatConstIterator STL compliant 15 years ago
Vadim Pisarevsky 70a2c8f50a added conversion operators Mat->vector<T>, Mat->Vec<T,n>, Mat->Matx<T,m,n> 15 years ago
Vadim Pisarevsky 2f2f06b925 rewrote color conversion functions; added sRGB<->CIE Lab/Luv conversion; added RGB<->YUV conversion; improved [s]RGB->Lab conversion speed 15 years ago
Vadim Pisarevsky 758e826d2e do not use WIN64/_WIN64 anymore - CMake did not set it anyway. Use WIN32 + __x86_64 or _M_X64 instead. Also, make VideoInput optional (WITH_VIDEOINPUT=ON/OFF) => now Mingw-dw2 can build OpenCV 15 years ago
Vadim Pisarevsky 396aa53e96 fixed VS preprocessor condition to include pmmintrin.h (which is available in VS2008 and later versions, but not in VS2005) 15 years ago
Vadim Pisarevsky f78a3b4cc1 updated 3rd party libs: CLapack 3.1.1.1 => 3.2.1, zlib 1.2.3 => 1.2.5, libpng 1.2.x => 1.4.3, libtiff 3.7.x => 3.9.4. fixed many 64-bit related VS2010 warnings 15 years ago
Anatoly Baksheev 2c84a66ec7 added support to build without cuda. 15 years ago
Yannick Verdie c3eb7881f1 New functions with QT GUI: 15 years ago
Yannick Verdie c685ca0e99 Fixed bug during compilation: 15 years ago
Vadim Pisarevsky 796553d051 added some quaternion operations on Scalar's. 15 years ago