Eric Sommerlade
a07d7a70a0
added support for uncompressed parameters to tiff image format as described here: expertland.net/question/b6o3n6p9a72341db823b48nl98m91dx8n1/detail.html
10 years ago
Olexa Bilaniuk
f454929d9c
PRNG changes: xorshift128+ algorithm, and seeding API.
...
- Switched to the extremely fast, while simple and high-quality,
xorshift128+ PRNG algorithm by Sebastiano Vigna in "Further scramblings
of Marsaglia's xorshift generators. CoRR, abs/1402.6246, 2014" (2^128-1
period, passes BigCrush tests). Performance improved by 10% over
random().
- Added an API to allow seeding with a specified seed, rather than using
rand() or random(). This allows deterministic, reproducible results in
tests using our algorithm (although findHomography() does not yet
support passing an entropy source on its own end).
10 years ago
Nisarg Thakkar
b8f65d0252
Same as Bug #3309 . Pushing to master
10 years ago
Dmitry-Me
53566f2ec0
Reduce variable scope, fix indenting
10 years ago
Ilya Lavrenov
5f7a994ad1
fixed internal compiler error
10 years ago
StevenPuttemans
350dccf84a
fix error 3714
10 years ago
Simon Heinen
5d97dd0ea5
Update android+AsyncServiceHelper.java
10 years ago
theodore
cfccdc9b0c
documenting findnonzero() function
10 years ago
theodore
453f384bd7
adding documentation for the findnonzero() function
10 years ago
Dmitry-Me
98a8045aaf
Reduce variable scope
10 years ago
Dmitry-Me
c4c3e4fe83
Remove unneeded indirections
10 years ago
Erik Karlsson
8e7aff4486
Changed fastNlMeansDenoising and fastNlMeansDenoisingMulti back to sum of sq distances. Moved sq sum of abs distances to fastNlMeansDenoisingAbs and fastNlMeansDenoisingMultiAbs
10 years ago
Maksim Shabunin
553020c448
Enabled STL usage within the library
10 years ago
UQ Times
1944443d10
iOS: fix crash from overrelease in UIImageToMat
...
- previous pull request: https://github.com/Itseez/opencv/pull/3340
10 years ago
Erik Karlsson
e647b7c7e8
Calculating almost_dist2weight at full size to avoid bounds checking
10 years ago
Erik Karlsson
baf266c29e
Changed from sum of squared differences to sum of abs differences
10 years ago
Vladislav Vinogradov
671b59aa9d
fix windows build with CUDA
...
rename cv::cuda::internal namespace
to cv::cuda::device to prevent conflicts
with cv::internal
10 years ago
Maksim Shabunin
79e8f0680c
Updated ml module interfaces and documentation
10 years ago
exeltior
b51805e245
Update mser.cpp
...
Need to initialize boolean variable pass2Only, otherwise the result is not predictable
10 years ago
Ahmatnurov Dinar
21ee113af3
fixig std::bad_alloc
...
if points0 is empty checkVector(2) return -1, it causes the exception
10 years ago
Dmitry-Me
103687871d
Reduce variable scope
10 years ago
Maksim Shabunin
da383e65e2
Remove deprecated methods from cv::Algorithm
10 years ago
Vladislav Vinogradov
a932d8aba1
use full qualified name for all internal namespaces to prevent ambiguous symbol errors
10 years ago
Olexa Bilaniuk
e5696bc5e6
Whitespace change reverts to minimize delta w.r.t master.
10 years ago
Erik Karlsson
c339720af9
Preparation for 16-bit colored denoising. Currently not working due to cvtColor not supportint 16-bit Lab conversion.
10 years ago
Hamid Bazargani
5070f2a334
Fix sacCalcJacobianErrors arguments. (curr.inl replaced with best.inl)
...
Fix the issue given NULL inlMask
10 years ago
Hamid Bazargani
44f906eb35
Fix sacCalcJacobianErrors arguments. (curr.inl replaced with best.inl)
...
Fix the issue given NULL inlMask
10 years ago
Hamid Bazargani
e22678018b
Fix sacCalcJacobianErrors arguments. (curr.inl replaced with best.inl)
...
Fix the issue given NULL inlMask
10 years ago
Hamid Bazargani
42176f8eb1
Fix sacCalcJacobianErrors arguments. (curr.inl replaced with best.inl)
...
Fix the issue given NULL inlMask
10 years ago
ASUS
9a555063e8
Fix sacCalcJacobianErrors arguments. (curr.inl replaced with best.inl)
...
Fix the issue given NULL inlMask
10 years ago
Erik Karlsson
584372bbf2
Fixed bounds checking
10 years ago
ASUS
6dbf13d7b5
saveBestModel() is modified. accuracy test is passed.
10 years ago
Erik Karlsson
d588c717da
Using WEIGHT_THRESHOLD to limit table size. Still problematic with 16-bit and big h-values.
10 years ago
Erik Karlsson
42db9e7153
Basic 16-bit implmentation of fastNlMeansDenoising. Table-based exponetiation leads to high memory footprint and loss of precision in 16-bit mode.
10 years ago
Erik Karlsson
49e93747b1
Added saturate_cast from int64 and uint64
10 years ago
Olexa Bilaniuk
ff2509af56
Fixed printouts in testcase to blame the correct method for a failure.
...
Previously, certain test failures by the method RHO would result in an
error blaming RANSAC instead. The fix involves a parameter change to
several functions in test_homography.cpp.
10 years ago
Erik Karlsson
8368fb9ea8
Additional refactoring preparing for 16-bit implementation
10 years ago
Dmitry-Me
c3f8fc41b7
Parameters should have been passed by reference
10 years ago
Erik Karlsson
e178294b49
Refactoring in preparation for 16-bit implementation of fastNlMeansDenoising
10 years ago
Maksim Shabunin
a5a510da4b
Support for compound modules, support for contrib_world
10 years ago
Dmitry-Me
ea48fcfc9f
Fix possible null pointer dereference
10 years ago
Olexa Bilaniuk
ccd33a721e
Fixed build failures related to designSPRTTest().
10 years ago
Olexa Bilaniuk
adac8c04bb
Converted to C++ style, + bugfixes.
...
The code has been refactored in response to feedback on Pull Request
Also, outputZeroH() now also zeroes the inlier set, much like
outputModel().
10 years ago
Andrew Senin
8c7b3b91fa
Fixing XIMEA parameters mapping (issue #4176 )
10 years ago
Olexa Bilaniuk
87c2b8197a
Bug fixes in mask output.
...
Previously, the output mask of inliers could remain completely
uninitialized. This fix is the first part of a solution.
10 years ago
Olexa Bilaniuk
b90800f0c7
Corrected typo in comment.
...
The inverted JtJ does not multiply itself, but rather Jte. Correct this
in the comment.
10 years ago
Alexander Alekhin
2054123890
coreTlsData -> getCoreTlsData()
10 years ago
Olexa Bilaniuk
2609e77af7
Silence spurious loss-of-data warnings from Windows.
...
Added explicit casts to silence warnings in fundam.cpp and rhorefc.cpp.
10 years ago
Olexa Bilaniuk
ce0570b777
Splitting vectorized code into separate branch.
...
Deleted SSE code from master branch.
Slight cleanups in fundam.cpp were made as a consequence.
10 years ago
Olexa Bilaniuk
69b146412a
Edited Doxygen documentation in the module calib3d.
...
Added a mention within calib3d.hpp that the flag RHO is available as an
option on calls to findHomography().
10 years ago