baisheng lai
36636e5fc8
rename sample dir
...
link bug fix
9 years ago
Vladimir
a1aa36d179
Fix whitespace in modules/datasets/src/track_vot.cpp
9 years ago
Vladimir
b8ecd05c08
Fix messages in tracker_dataset.cpp
9 years ago
Vladimir
97c71f0000
Update for tld_test.cpp->tracker_dataset.cpp
...
Sample has been renamed: tld_test.cpp->tracker_dataset.cpp
Updated to read parameters from cmd:
-Algorithm name
-Root dataset path
-Dataset ID
9 years ago
Vladimir
d59c6ba159
Add Datasets dependency to Tracking module
9 years ago
Vladimir
98a3956722
Fix: - Get dataset path form *args
9 years ago
Kurnianggoro
a805f8baf9
add multitracker and roiselector to tracking API group
9 years ago
Vadim Pisarevsky
e18103e2e3
Merge pull request #221 from xolodilnik:fast_hough_transform
9 years ago
Vladimir
cd5b061c67
Added VOT2015 Dataset interface + VOT2015 sample cpp
9 years ago
Vladimir
c11abeb7d5
Merge pull request #4 from Auron-X/TLD/VOT-2015-Dataset-Support
...
Tld/vot 2015 dataset support
9 years ago
Maksim Shabunin
47d45c55de
ximgproc perftest
9 years ago
Maksim Shabunin
fb8d27c987
perf_line_descriptor
9 years ago
Maksim Shabunin
22e57f59e6
xfeatures2d tests
9 years ago
Patrick Snape
c8986b13fc
Complex issue around const valarray indexing
...
Fixes https://github.com/Itseez/opencv_contrib/issues/332
Relevant material:
http://stackoverflow.com/questions/6066273/pointer-into-vector-but-not-into-a-valarray
http://objectmix.com/c/40001-address-first-member-valarray.html
http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-defects.html#389
I have to admit my naivety here, this issue is was complex for me
to diagnose. It appears that in the MSVC 2008/2010 implementation
of std::valarray, when indexing and assigning to a const variable,
that the const version of the member function
valarray<T>::operator[](size_t) returns a value instead of a
const-reference. Therefore, taking the address of this is a
compiler error as you can't take the address of an lvalue. By
performing a const_cast on the array we change which function
is called and thus we actually do recieve a const-reference.
This should not effect other compilers.
9 years ago
Patrick Snape
8682d7d054
floor and ceil have no int overload on MSVC
...
Adding float casts allows them to compile on MSVC and should not
affect other compilers.
9 years ago
Patrick Snape
2b766bf091
Use std::numeric_limits<float>::quiet_NaN()
...
NAN is a compiler specific constant that does not exist on
visual studio. I also noticed that some NAN instances had been
cast to float, whereas quiet_NaN is both 1) defined by the
standard and 2) templated for the correct type. This is a much
more portable method of getting a NaN value.
9 years ago
Patrick Snape
6a35628696
pow not overriden for integers in MSVC<2012
...
Just adding a float cast (since a float is being assigned to)
allows MSVC to compile and should not affect other compilers.
9 years ago
Patrick Snape
d1695524d2
Add round method for daisy
...
round does not exist in MSVC<2012 - added with the same code
as in line_descritor/binary_descriptor.cpp
9 years ago
Patrick Snape
11124010aa
sqrt is not overriden for integers in MSVC<2012
...
Adding the decimal point means that VS doesn't complain about
lack of overrides for sqrt with integers.
9 years ago
Patrick Snape
0236befcd2
Line descriptor: binary_descriptor - vector.data()
...
vector.data() does not exist in MSVC<2012, so I changed it to
&vector.front() which has the same effect (pointer to the first
element in the vector).
9 years ago
Maksim Shabunin
ba49cfabff
Testing line_descriptor, reg, rgbd
9 years ago
baisheng lai
2ac00324b2
small modification
9 years ago
Maksim Shabunin
95af1b58f9
Tests for xphoto
9 years ago
baisheng lai
2960c631de
add all modules to ccalib group
9 years ago
baisheng lai
79ddc32eed
rename files
9 years ago
baisheng lai
27609c12e3
make optimization of omnidir::calibrate more stable
9 years ago
Maksim Shabunin
79df3dbc85
Tests for ximgproc
9 years ago
Vladimir
94447d5160
Restored *protected:*' in tracker.hpp
9 years ago
Vladimir
f16586f81b
Cleaning up debug prints/variables/flags/timers
9 years ago
Vladimir
4537103c3a
Added Doxygen documentation
9 years ago
baisheng lai
971b745934
- move hpp files to include/opencv2/ccalib
...
- add multiple camera calibration tutorial
- code clean
9 years ago
Vladimir
190d2dcf85
Warnings Fix #3
9 years ago
Vladimir
167712b85d
Warnings Fix #2
9 years ago
Vladimir
7e934bf182
Warnings Fix #1
9 years ago
Vladimir
d82f20ad6b
Merge branch 'TLD_Multi_Tracking_Support' of https://github.com/Auron-X/opencv_contrib into TLD_Multi_Tracking_Support
9 years ago
Vladimir
54f7c10a69
Added OpenCV lincense and "precomp.hpp"
9 years ago
Vladimir
6b58922d5f
Removed inline specifiers
9 years ago
Vladimir
365722e5e9
Fixed spaces in >>
9 years ago
Vladimir
d310f82e41
Added MO-TLD NN Classifier optimization on GPU
9 years ago
Vladimir
ed1c452dcf
Fixed pointers to posNum and negNum
9 years ago
Vladimir
0e14ca7816
Fixed some init BB
9 years ago
Vladimir
6a1bf675ca
Fix std::vector <Ptr<Tracker> >
9 years ago
Vladimir
96ce5993fb
Added multiTracker.hpp (fix)
9 years ago
Vladimir
2088e5e6f9
Improved VF optimization + Added EC optimization for MO-TLD
9 years ago
Vladimir
b318e38bd0
Debug through candidates display
9 years ago
Vladimir
ada268148d
Added VOT 2015 dataset support
...
http://www.votchallenge.net/vot2015/dataset.html
9 years ago
Vladimir
871f40cb5b
Added optimization to Multi-target TLD update
9 years ago
Vladimir
cac774cbfc
Added Multi-tracker functionality and example
...
1. Multi-tracker classes (multiTracker.cpp)
2. Multi-tracker example (multiTracker_test.cpp)
3. Fixed a rare bug (OpenCL runtime error)
9 years ago
Vladimir
c2525aeaee
Merge branch 'master' of https://github.com/Auron-X/opencv_contrib
9 years ago
Vladimir
fd5251f6aa
Merge branch 'master' of https://github.com/Itseez/opencv_contrib
9 years ago