Vadim Pisarevsky
1dcd18dc7c
updated readme for several opencv_contrib modules (done by Gary)
1 year ago
Maksim Shabunin
c56efb910e
Fix clang 14 warnings
2 years ago
Alexander Smorkalov
2abfef7d08
3.4: -Wunused-but-set-variable warnings fix after XCode update with clang
2 years ago
Alexander Smorkalov
f149f26ca0
-Wunused-but-set-variable warnings fix after XCode update with clang 13.1.
2 years ago
Alexander Alekhin
839db44377
Revert "suppress warning on GCC 7 and later"
...
This reverts commit a96a930f12
.
3 years ago
Tomoaki Teshima
a96a930f12
suppress warning on GCC 7 and later
3 years ago
Gary Allen
9d0a451bee
Merge pull request #3296 from gvcallen:4.x
...
Allow new glog in SFM CMake Project
* Allow new glog in SFM CMakeLists.txt
* Fix typo
* Fixed missing bracket
3 years ago
leatherwang
7e14b4bba1
Fix array out of range when too many line segments extracted
3 years ago
Suleyman TURKMEN
6d40472356
Revert "line_descriptor: remove code with conflict license"
...
This reverts commit e990caef8d
.
4 years ago
Alexander Alekhin
ce196ce2d6
build: eliminate build warnings
4 years ago
shimat
14722baee3
fix popcnt error for ARM/ARM64
5 years ago
Brian Wignall
078c45633d
Fix typos
...
backport commit 8c09249352
5 years ago
Alexander Alekhin
47de8dd38f
python: force using of ArgInfo
6 years ago
Alexander Alekhin
f452bd49e4
update tests (gaussianBlur fix)
6 years ago
Alexander Alekhin
e990caef8d
line_descriptor: remove code with conflict license
6 years ago
iindovina
287a5e529a
Merge pull request #1994 from iindovina:expose_line_descriptor_python
...
Expose line descriptor python (#1994 )
* Created wrappers for other line_descriptor functions/classes
* Changes to expose LSD and EDLines params in Python and make line descriptor available in Python
6 years ago
Suleyman TURKMEN
2074cc48e5
minor changes
7 years ago
Varvrar
5002e93405
Now when the element of the vector is removed j does not increase
7 years ago
dianlujitao
e396a67038
Add python binding and sample for LSD
7 years ago
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
7 years ago
Alexander Alekhin
df483cfdc9
build: unreachable code after CV_Error()
7 years ago
Alexander Alekhin
4352e1eaf3
line_descriptor: apply CV_OVERRIDE/CV_FINAL
7 years ago
Alexander Alekhin
edfdf12c31
tests: refactor test files
7 years ago
Vitaly Tuzov
2d65a14c27
Fixed segmentation fault during search for nearest neighbor if provided descriptors are too far
7 years ago
Vitaly Tuzov
8c394a4f2e
Updated internal calls to linear resize to use bit-exact version
7 years ago
Vladislav Sovrasov
b4c67e8bb9
Fix gcc7 warnings
8 years ago
Suleyman TURKMEN
29e3caf3e4
Update line_descriptor samples
8 years ago
Vladislav Sovrasov
1537cbb9d8
Get rid of exit() calls in algorithms and tests
8 years ago
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
9 years ago
Vladislav Sovrasov
0cd4ff44ba
Fix coordinates overflow in binary line descriptor
9 years ago
Vladislav Sovrasov
a10a827c55
Fix memory leak in line descriptor matcher
9 years ago
Vladislav Sovrasov
d7427cc6b3
Replace std::runtime_error with CV_Error
9 years ago
Vladislav Sovrasov
862e03c43b
Fix segFault when no lines found in BinaryDescriptor
9 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)
10 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