Maksim Shabunin
f8807f18cd
Reduced modules dependencies:
...
- made some of dependencies explicit
- removed dependencies to highgui and some other modules where possible
- modified some samples to build without modules
8 years ago
Alexander Alekhin
cee4edbbfd
cmake: add global defines to enable useful macros
8 years ago
Alexander Alekhin
7cdf2191d0
win32 warnings
8 years ago
Vladislav Sovrasov
0cd4ff44ba
Fix coordinates overflow in binary line descriptor
8 years ago
Vladislav Sovrasov
a10a827c55
Fix memory leak in line descriptor matcher
8 years ago
Vladislav Sovrasov
d7427cc6b3
Replace std::runtime_error with CV_Error
8 years ago
Vladislav Sovrasov
862e03c43b
Fix segFault when no lines found in BinaryDescriptor
8 years ago
Vladislav Sovrasov
49d93c0c80
Fix line descriptor module build on Win64
9 years ago
Gary Bradski
9dd60aeb82
Update README.md
9 years ago
Bleach666
9677bd7fca
fix vs2010 samples build
9 years ago
Prof. Dr. Rudolf Haussmann
c2b55897b4
The function pow(2.0,i) has been replaced by (1<<i)
...
modified: modules/line_descriptor/perf/perf_matching.cpp
modified: modules/line_descriptor/test/test_matcher_regression.cpp
9 years ago
Prof. Dr. Rudolf Haussmann
75a1722564
The function pow(2,i) has been replaced by pow(2.0,i)
...
modified: modules/line_descriptor/perf/perf_matching.cpp
modified: modules/line_descriptor/test/test_matcher_regression.cpp
9 years ago
Jesus Briales
ad765a756c
Fix subpixel precision issue and compute line points in original image size
...
Issue 1:
The subpixel precision of LSD was lost in the implicit conversion to Vec4i
Solved:
Line point coordinates are stored in cv::Vec4f
No type conversion needed from extremes to kl float fields
Issue 2:
The keyline point fields for original image were not being correctly filled
Solved:
The points in original image are computed through scaling (using scale factor and octave index)
9 years ago
Jan S. (Milania1)
e57a81d2ea
Added getters to the points of the KeyLine class
10 years ago
Jan S. (Milania1)
34cf8f7021
Draw keylines in random color by default as documentation depicts
10 years ago
Maksim Shabunin
c1f27e9a69
Fixed some mingw-w64 compilation issues
10 years ago
Maksim Shabunin
94e777ba45
Trying to fix some tests
10 years ago
Maksim Shabunin
fb8d27c987
perf_line_descriptor
10 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.
10 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.
10 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).
10 years ago
Maksim Shabunin
ba49cfabff
Testing line_descriptor, reg, rgbd
10 years ago
Alexander Stohr
70a2b23a6d
use better condition for checking if compiler supports round()
10 years ago
Alexander Stohr
024d8486a4
fix suffix that was in-compatible with MSVC 2012 (VC 11)
10 years ago
Alexander Stohr
8e24552f6c
make sources compile again on MSVC 2012 (VC 11) by adding round()
10 years ago
Alex Tomala
6219b5dfba
Fixed bug in LSDDetector where mask doesn't remove all undesired lines
10 years ago
Dikay900
361dff4ee4
fix already defined macro variable
10 years ago
Dikay900
9bc8514fd9
fix issue for visual studio versions which arent standarized for the c99
...
standard
10 years ago
Dikay900
8f9dd88c32
delete private.hpp include in sample code and corresponding documentation
10 years ago
Maksim Shabunin
67a2066c4b
Java and python wrappers for contrib modules
10 years ago
Maksim Shabunin
7d9bbdcaad
Remove all sphinx files
10 years ago
Maksim Shabunin
61f36de542
Doxygen tutorials support
10 years ago
Maksim Shabunin
34131405df
Removed some methods from cv::Algorithm and changed ml module interfaces
10 years ago
Maksim Shabunin
2b74ca6f12
Added opencv_contrib_world module and fixed some compilation warnings on iOS
10 years ago
Maksim Shabunin
a20c5c8dd9
Doxygen documentation for all modules
10 years ago
Dinar Ahmatnurov
df2f650bba
latentsvm caskade
...
reworked PR 3
comment off #include "opencv2/core/private.hpp". It prevent the project from being referenced from outside the opencv library.
renaming + docs;
10 years ago
Shuda Li
2eddf48dd2
comment off #include "opencv2/core/private.hpp". It prevent the project from being referenced from outside the opencv library.
10 years ago
StevenPuttemans
c20ea8e7e8
adding more clear documentation
11 years ago
berak
70e9ee6292
fix mismatched delete[] calls in line_descriptor.cpp
11 years ago
Vadim Pisarevsky
a5f4cdbcdd
another fix in line descriptor module for Win32 MSVC
11 years ago
Vadim Pisarevsky
db1667ed6c
fixed the hamming distance function not to use 64-bit pop count. This should fix compile errors on Windows
11 years ago
Maksim Shabunin
f63324ac39
Fixed line_descriptor android build
11 years ago
biagio montesano
b0cb1c0d82
Corrected possible loss of precision
11 years ago
biagio montesano
b83bff0c8f
Removed optim dependence
11 years ago
biagio montesano
c28417c8ff
Array32 class removal.
11 years ago
biagio montesano
9a52f4626b
Created nested classes. Removed some useless headers.
11 years ago
biagio montesano
e39065bf77
Created nested namespace. Modified interface classes.
11 years ago
biagio montesano
927619973b
Added perf and accuracy tests
11 years ago
biagio montesano
30ed727767
Added LSD sample. Removed python macros.
11 years ago
biagio montesano
4c0d7579ad
Added descriptors' test
11 years ago