893 Commits (f10bff26536ee01544f2fcfa8cf8fd4967f934fd)

Author SHA1 Message Date
Vadim Pisarevsky 8511b69635 fixed Mat::Mat(Vec|Matx|vector) constructor (ticket #747) 14 years ago
Vadim Pisarevsky 4339f69da4 fix opencv-highgui build with old versions of libpng (< 1.4.x) 14 years ago
Anatoly Baksheev 6c2cce6e28 some files rename 14 years ago
Anatoly Baksheev ec4d2b6bb9 Fixed serious kernel crash IN StereoBM_GPU for some parameter. Will more rework for the code farther. 14 years ago
Vadim Pisarevsky fcdce4edcb fixed border processing bayer2rgb & bayer2gray; made the test "color-bayer" pass; renamed CV_Bayer*2Gray -> CV_Bayer*2GRAY for consistency 14 years ago
Vadim Pisarevsky d14b744ea9 possibly improved findHomography accuracy (reported by Luca Del Tongo) 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
Alexey Spizhevoy 79b1eec3d3 minor refactoring of gpu module 14 years ago
Alexey Spizhevoy 9f80317ffa fixed minor bug in gpu module, added first version of sum 14 years ago
Alexey Spizhevoy d557c800a7 refactored gpu module 14 years ago
Alexey Spizhevoy 97484089c5 added support of CV_8U & CV_TM_CCORR into gpu::matchTemplate 14 years ago
Vadim Pisarevsky e5564b4388 improved accuracy of determinant(), invert() and solve() on 3x3 matrices (ticket #749) 14 years ago
Kirill Kornyakov d8415ed44e code cleaning of cascade classifier 14 years ago
Alexey Spizhevoy 9801d07a46 added test for gpu:columnSum 14 years ago
Alexey Spizhevoy fa322bf46f added gpu::columnSum, fixed compile error (if there is no cuda), refactored 14 years ago
Alexey Spizhevoy b1c5b9293e added support of CV_32F & CV_TM_SQDIFF into gpu::matchTemplate 14 years ago
Alexey Spizhevoy 40304721a7 added support of CV_TM_CCORR (via FFT) into gpu::matchTemplate (versions both with block and without blocks) 14 years ago
Vadim Pisarevsky 3beac049d5 replicated the fix for Ptr<CvCapture> bug 14 years ago
Vladislav Vinogradov 905e5f1739 added support of 4-channels images to StereoConstantSpaceBP. 14 years ago
Vladislav Vinogradov c18aa438ec added support of 4 channels images to StereoBeliefPropagation, minor code refactoring. 14 years ago
Alexey Spizhevoy 349a9fac86 fixed compile-time warning under g++ 14 years ago
Alexey Spizhevoy 19b434be50 minor refactoring of gpu module 14 years ago
Vadim Pisarevsky ed934ed6fc fixed GBTrees build on NetBSD & Android; fixed GPU brute force matcher test build on MacOSX 14 years ago
Anatoly Baksheev 652fb1212e module reorganization: added folder with pure device functions, cuda_shared.hpp renamed to internal_shared.hpp 14 years ago
Vladislav Vinogradov fadd19b976 added assertion on Compute Capability >= 1.1 to BruteForceMatcher_GPU_base::radiusMatch 14 years ago
Alexey Spizhevoy 50167f6c26 added first version of gpu::matchTemplate, currently it works only with 8UC1 images and SQDIFF method 14 years ago
Vladislav Vinogradov 8891acb67a added BruteForceMatcher_GPU 14 years ago
Alexey Spizhevoy 77027f6075 refactored border interpolation in gpu module 14 years ago
Vadim Pisarevsky bc21cc6fe9 revert to using fixed RNG in EM, otherwise the algorithm becomes non-deterministic and the test fails sometimes. in the meantime, EM needs to switch to more robust cv::kmeans instead of CvEM::kmeans. 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
Vladislav Vinogradov 17d9014373 added per-element min/max to gpu module. 14 years ago
Anatoly Baksheev d96c5ebb7d misprint 14 years ago
Alexey Spizhevoy 6ef4d9b1dd added sipport of BORDER_REPLICATE mode into gpu::corner* functions 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 ea3ccc6d61 a few more little fixes in read_csv 14 years ago
Vadim Pisarevsky 33d23ef27a fixed several typos in docs; make MLData capable of reading csv files with much more columns than before 14 years ago
Vadim Pisarevsky 3e7fbd21e0 fixed compile errors in cap_qt.cpp (ticket #391) 14 years ago
Vadim Pisarevsky 695aa02e98 little change in flann save_value. Likely does not affect anything 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 11ed55ddb4 fixed mouse painting in Qt bindings (to make watershed & inpaint demos work); increased the font in the detailed pixel image display. 14 years ago
Vadim Pisarevsky 84aed5d360 fixed unresolved RotatedRect::boundingRect() error (ticket #725) 14 years ago
Vadim Pisarevsky 6a15ff8d13 added cvSave(contours) to the contours demo; added rational model demonstration to stereo_calib; fixed formatting in imgproc/types_c.h 14 years ago
Alexey Spizhevoy 103bbaf09c updated BrdReflect101 in gpu module 14 years ago
Alexey Spizhevoy e75ca4b662 replaced global memory reads with texture memory reads in GPU's corner detectors 14 years ago
Alexey Spizhevoy df48ad76b0 added support of gamama_correction parameter into gpu::HOGDescriptor, updated tests 14 years ago
Alexey Spizhevoy 2a2590bae2 replaced filter (from the nearest to linear) mode when resizing image in gpu::HOGDescriptor 14 years ago