Vadim Pisarevsky
f2f8fc14b0
proper fix for reduce with op=CV_REDUCE_AVG and ddepth==CV_8U
14 years ago
Ilya Lysenkov
29b45e70bd
Fixed cluster centers returning in cvKMeans2 (ticket #706 )
14 years ago
Alexander Shishkov
b19434513b
reverted the floating-point number formatting (exception in ml tests)
14 years ago
Alexander Shishkov
80dfdf8ff7
removed ddepth from matrix (after Vadim's commit, it generates problem with core and ml tests)
...
returned the new floating-point number formatting
14 years ago
Vadim Pisarevsky
b14ca4299a
reverted the floating-point number formatting
14 years ago
Alexander Shishkov
eae7921da6
fixed build on GNU/Hurd (ticket #761 )
14 years ago
Vadim Pisarevsky
6de72ea8ee
resolved tickets #904 (nicer floating-point formatting) and #816 (reduce with CV_REDUCE_AVG on 8-bit arrays)
14 years ago
Alexander Shishkov
6aabf72bc5
removed OPENCV_BUILD_SHARED_LIB in favor of BUILD_SHARED_LIBS
14 years ago
Kirill Kornyakov
78d821114a
Update CommandLineParser class: move method's definition from header to source
14 years ago
Vadim Pisarevsky
60a0ebbd6c
added optional encoding parameter to cvOpenFileStorage() and FileStorage::open() (ticket #976 ). moved some implementation parts of CommandLineParser to cmdparser.cpp.
14 years ago
Kirill Kornyakov
fe279279e6
Update CommandLineParser class
14 years ago
Vadim Pisarevsky
3a1f24e74c
fixed mat.push_back(mat) (ticket #1091 )
14 years ago
Vadim Pisarevsky
309bb171b2
do not use system is<alpha|alnum|space|...>, because of the different implementations (and in OpenCV we assume english names of the identifiers etc)
14 years ago
Vadim Pisarevsky
0bf00036a8
improved jSVD accuracy
14 years ago
Vadim Pisarevsky
23768b1826
replaced #include <some_opencv_hdr> with #include "some_opencv_hdr" (ticket #719 )
14 years ago
Kirill Kornyakov
aadb1669a7
some samples updated according to new CommandLineParser class
14 years ago
Vadim Pisarevsky
fa0c8d954e
allow lower-case utf-8 encoding specification as well
14 years ago
Vadim Pisarevsky
6d05622a5f
one more fix with encoding when reading/writing XMLs
14 years ago
Vadim Pisarevsky
856c717783
fixed reading/writing of utf-8 strings
14 years ago
Vadim Pisarevsky
b0598fcf36
removed debug print statement from cvMixChannels()
14 years ago
Vadim Pisarevsky
62569f6926
fixed a few warnings on Windows; fixed critical bugs in cvMixChannels and AutoBuffer<>.
14 years ago
Vadim Pisarevsky
3d154c9dde
fix build problems on Windows
14 years ago
Kirill Kornyakov
94760a5f2b
command line parser added. Leonid Beynenson is original contributor of the class. Class will be used in samples for convenient (and unified) work with command arguments.
14 years ago
Vladislav Vinogradov
3c2d7b951a
fixed LUT (ticket #1057 )
14 years ago
Vladislav Vinogradov
58e26313dd
fixed bug in cv::LUT (multi-channel source array and single-channel table)
...
added missing cudaSafeCall
14 years ago
Vadim Pisarevsky
62b966460d
do not include DLLMain into core when it is a static library (thanks to aglinarth for the patch)
14 years ago
Vadim Pisarevsky
c82252035f
fixed bug with misaligned data access (on Windows & Linux)
14 years ago
Vadim Pisarevsky
4b2f9e78fc
fixed repeated allocation of RNG on each theRNG() call (thanks to barjenbr for the patch)
14 years ago
Vadim Pisarevsky
9ac3a35175
do not use Lapack anymore
14 years ago
Vincent Rabaud
6e15238dd9
- make sure the code compiles with gcc 4.6
14 years ago
Vladimir Dudnik
2057f2c452
fixed build issues related to changes in IPP calls.
14 years ago
Vadim Pisarevsky
dd45fe13d1
fixed OutputArray::create, which resolves several failures in opencv_test_core
14 years ago
Vadim Pisarevsky
94e09f24c7
fixed crash in test_core
14 years ago
Vadim Pisarevsky
9a991a2e10
fixed build problems on Windows
14 years ago
Vadim Pisarevsky
abeeb40d46
a big patch; use special proxy types (Input/OutputArray, Input/OutputArrayOfArrays) for passing in vectors, matrices etc.
14 years ago
Andrey Kamaev
b906ad3108
Test system included into Android build
14 years ago
Vincent Rabaud
578ca872e4
- add support for the popcnt instruction (useful for the Hamming distance, soon to come in BRIEF and FLANN)
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
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
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
Vladimir Dudnik
c987b9f180
added IPP Sobel and Sharr filters. Also some minor changes.
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.
...
Added print of IPP info in test log files
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.
...
The script should support IPP from 5.3 up to 7.x versions (although tested on Windows for IPP 6.1 and IPP 7.0 versions only)
Preliminary optimization of HOG with IPP added too. Not yet quite efficient, code for cpu branch should be redesigned in order to have better performance.
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
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