Suleyman TURKMEN
2074cc48e5
minor changes
2018-11-10 10:56:17 +03:00
Varvrar
5002e93405
Now when the element of the vector is removed j does not increase
2018-10-31 15:38:18 +03:00
dianlujitao
e396a67038
Add python binding and sample for LSD
2018-07-23 16:05:55 +08:00
Colin
25a01dc4ef
Merge pull request #1652 from fallenlord:master
...
Bug fixes: using mask with BinaryDescriptor (#1652 )
* Bug fixes: erasing an element from std::vector should not move iterator forward
* Bug fixes: add a NULL checking
* Remove the appoggio matrix generation, which is useless
2018-06-04 10:56:25 +00:00
Alexander Alekhin
df483cfdc9
build: unreachable code after CV_Error()
2018-04-24 15:24:48 +03:00
Alexander Alekhin
4352e1eaf3
line_descriptor: apply CV_OVERRIDE/CV_FINAL
2018-03-28 16:49:59 +03:00
Alexander Alekhin
edfdf12c31
tests: refactor test files
2018-02-02 19:15:28 +03:00
Vitaly Tuzov
2d65a14c27
Fixed segmentation fault during search for nearest neighbor if provided descriptors are too far
2018-01-23 20:14:37 +03:00
Vitaly Tuzov
8c394a4f2e
Updated internal calls to linear resize to use bit-exact version
2017-12-14 13:00:09 +03:00
Vladislav Sovrasov
b4c67e8bb9
Fix gcc7 warnings
2017-09-14 16:54:15 +03:00
Suleyman TURKMEN
29e3caf3e4
Update line_descriptor samples
2017-08-03 23:51:14 +03:00
Vladislav Sovrasov
1537cbb9d8
Get rid of exit() calls in algorithms and tests
2017-06-21 12:15:17 +03:00
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
2017-03-15 18:00:21 +03:00
Alexander Alekhin
cee4edbbfd
cmake: add global defines to enable useful macros
2017-01-13 14:29:28 +03:00
Alexander Alekhin
bd619c55c1
Merge pull request #868 from sovrasov:line_descr_crash_fix
2016-12-02 06:52:00 +00:00
Alexander Alekhin
7cdf2191d0
win32 warnings
2016-12-01 17:22:41 +03:00
Vladislav Sovrasov
0cd4ff44ba
Fix coordinates overflow in binary line descriptor
2016-11-22 16:54:00 +03:00
Vladislav Sovrasov
a10a827c55
Fix memory leak in line descriptor matcher
2016-11-21 14:46:09 +03:00
Vladislav Sovrasov
d7427cc6b3
Replace std::runtime_error with CV_Error
2016-11-16 16:13:43 +03:00
Vladislav Sovrasov
862e03c43b
Fix segFault when no lines found in BinaryDescriptor
2016-11-16 14:42:24 +03:00
Vladislav Sovrasov
49d93c0c80
Fix line descriptor module build on Win64
2016-10-05 13:00:20 +03:00
Gary Bradski
9dd60aeb82
Update README.md
2016-03-27 14:27:13 -07:00
Bleach666
9677bd7fca
fix vs2010 samples build
2016-03-18 14:48:16 +02:00
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
2016-02-20 16:14:58 +01:00
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
2016-02-20 14:23:41 +01:00
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)
2015-11-22 11:03:23 +01:00
Jan S. (Milania1)
e57a81d2ea
Added getters to the points of the KeyLine class
2015-10-19 22:41:55 +02:00
Jan S. (Milania1)
34cf8f7021
Draw keylines in random color by default as documentation depicts
2015-09-26 22:30:30 +02:00
Alexander Alekhin
f60ca728a1
Merge pull request #370 from mshabunin:mingw-fix
2015-09-14 10:44:02 +00:00
Maksim Shabunin
22f5843377
Merge pull request #338 from patricksnape:msvc_python_fixes
2015-09-11 11:08:25 +00:00
Maksim Shabunin
c1f27e9a69
Fixed some mingw-w64 compilation issues
2015-09-10 17:45:03 +03:00
Maksim Shabunin
94e777ba45
Trying to fix some tests
2015-09-08 16:16:37 +03:00
Maksim Shabunin
fb8d27c987
perf_line_descriptor
2015-08-20 15:12:08 +03:00
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.
2015-08-20 11:18:24 +01:00
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.
2015-08-20 11:14:48 +01:00
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).
2015-08-20 11:13:29 +01:00
Maksim Shabunin
ba49cfabff
Testing line_descriptor, reg, rgbd
2015-08-20 12:19:13 +03:00
Alexander Stohr
70a2b23a6d
use better condition for checking if compiler supports round()
2015-07-22 14:45:54 +02:00
Alexander Stohr
024d8486a4
fix suffix that was in-compatible with MSVC 2012 (VC 11)
2015-07-22 11:42:39 +02:00
Alexander Stohr
8e24552f6c
make sources compile again on MSVC 2012 (VC 11) by adding round()
2015-07-22 11:34:43 +02:00
Alex Tomala
6219b5dfba
Fixed bug in LSDDetector where mask doesn't remove all undesired lines
2015-07-11 15:16:27 -04:00
Vadim Pisarevsky
5f4cda5053
Merge pull request #136 from Dikay900/fix_line_descriptor_module
...
line_descriptor module fix vs2013 build
2015-04-03 15:09:20 +03:00
Vadim Pisarevsky
f5e5a6b206
Merge pull request #138 from Dikay900/fix_samples_with_incorrect_private_include
...
[fix issue #3996 ] delete private.hpp include in sample code
2015-04-03 14:20:47 +03:00
Dikay900
361dff4ee4
fix already defined macro variable
2015-03-24 21:39:39 +01:00
Dikay900
9bc8514fd9
fix issue for visual studio versions which arent standarized for the c99
...
standard
2015-03-24 21:39:12 +01:00
Dikay900
8f9dd88c32
delete private.hpp include in sample code and corresponding documentation
2015-03-24 21:35:53 +01:00
Vadim Pisarevsky
ec2b3ed662
Merge pull request #185 from mshabunin/remove-docs
...
Removed sphinx documentation
2015-03-16 13:07:31 +03:00
Maksim Shabunin
67a2066c4b
Java and python wrappers for contrib modules
2015-02-26 15:46:02 +03:00
Vadim Pisarevsky
23314751aa
Merge pull request #169 from mshabunin/remove-algorithm-factory
...
Remove algorithm factory
2015-02-20 10:15:54 +03:00
Maksim Shabunin
7d9bbdcaad
Remove all sphinx files
2015-02-17 12:49:37 +03:00