Steven Puttemans
9e5c9dad55
fix_9121
8 years ago
Alexander Alekhin
6b2510d312
Merge pull request #9317 from sturkmen72:warpPerspective_demo
8 years ago
Alexander Alekhin
a048cb9f0d
Merge pull request #9338 from dkurt:fix_ocl
8 years ago
Alexander Alekhin
87598c8749
Merge pull request #9365 from alalek:build_fix_parallel
8 years ago
Alexander Alekhin
ca9a88785e
core(build): fix compilation of parallel.cpp (OpenMP configuration)
8 years ago
Alexander Alekhin
2072168a1c
Merge pull request #9360 from tomoaki0705:suppressCalib3dWarning
8 years ago
Tomoaki Teshima
800f656402
suppress warning message
8 years ago
Alexander Alekhin
ef2b73043d
Merge pull request #9342 from alalek:fix_parallel_for
8 years ago
Alexander Alekhin
7a10369f4b
Merge pull request #9331 from tomoaki0705:suppressWarningVS
8 years ago
Tomoaki Teshima
14b76a5bca
suppress warnings on Visual Studio 2013 and earlier
8 years ago
Suleyman TURKMEN
8bb3863f52
New example - warpPerspective_demo.cpp
...
An example program shows using cv::findHomography and cv::warpPerspective for image warping
8 years ago
Alexander Alekhin
fa288af58b
Merge pull request #9343 from PhilLab:patch-4
8 years ago
Alexander Alekhin
0e7edca7e3
Merge pull request #9340 from paroj:stereocalib_cpp
8 years ago
Alexander Alekhin
9e5a8ba9f5
Merge pull request #9339 from johnhany:Fix-SyntaxError-check-tests-py
8 years ago
Alexander Alekhin
c9fb1434c0
Merge pull request #9332 from csukuangfj:improve-documentation
8 years ago
Alexander Alekhin
a5ea5888b8
Merge pull request #9328 from taketwo:example-superres-fix
8 years ago
Philipp Hasper
2c7a15b195
Clarified documentation cv::RotatedRect::points
8 years ago
Alexander Alekhin
0ebabe17df
core: fix flag processing for nested regions in cv::parallel_for_()
8 years ago
Pavel Rojtberg
5ada462773
calib3d: use cpp functions in cvStereoCalibrate to make it more readable
8 years ago
John Hany
69e19b88c2
Fix SyntaxError with print
8 years ago
Dmitry Kurtaev
41519d3ac0
Fixed some OpenCL interface bugs
8 years ago
KUANG, Fangjun
4bbe67451d
fix some typos in the documentation.
8 years ago
Sergey Alexandrov
0f8faa3441
Minor update for example-gpu-super_resolution
...
* Remove "simple" flow estimation from help (because it was disabled by 653bca8b
)
* Add `flush` after printing iteration number for better UX
8 years ago
Alexander Alekhin
87c27a074d
Merge tag '3.3.0'
...
OpenCV 3.3.0
8 years ago
Alexander Alekhin
4af3ca4e4d
OpenCV version++
...
OpenCV 3.3.0
8 years ago
Alexander Alekhin
953160ddd6
Merge tag '3.3.0-cvsdk'
...
OpenCV 3.3.0 for Intel Computer Vision SDK
8 years ago
Alexander Alekhin
5c961169cc
Merge pull request #9308 from alalek:akaze_fixes
8 years ago
Alexander Alekhin
94dbc35d92
features2d(test): more AKAZE tests
8 years ago
Alexander Alekhin
ad2e864a9a
akaze: more fixes
...
- boundary checks
- div by zero guard
- fixed bilinear interpolation (another case)
- reduce memory allocation
8 years ago
Alexander Alekhin
e0489cb4a6
akaze: fix T-API interfaces, disable OpenCL code
...
- OpenCL kernels don't handle matrices properly. Assumptions are not checked.
- OpenCL/T-API integration is not correct.
8 years ago
Alexander Alekhin
922ac1a1ec
Merge pull request #9303 from alalek:akaze_update
8 years ago
Alexander Alekhin
c95a97389d
Merge pull request #9235 from sturkmen72:patch-3
8 years ago
Alexander Alekhin
2a8322ddbb
akaze: uninitialized field
8 years ago
Alexander Alekhin
cfb964834c
stitching(perf): increase test check tolerance
8 years ago
Alexander Alekhin
73c3d14a66
akaze: fRound -> cvRound, fix bilinear interpolation
8 years ago
Alexander Alekhin
f6ceeaa2e5
akaze: getAngle() -> fastAtan2()
8 years ago
Alexander Alekhin
6847cc9f1c
akaze: remove usage of int8_t / uint8_t
8 years ago
Alexander Alekhin
411d36ff13
features2d(test): update descriptor regression test
8 years ago
Alexander Alekhin
63ae5f00b1
features2d(test): enable debug messages
8 years ago
Alexander Alekhin
43e0912516
akaze: resolve issue with using of uninitialized memory
8 years ago
Alexander Alekhin
64533009b3
akaze: optimize allocations
8 years ago
Alexander Alekhin
8aca8d90d6
akaze: replace ceil()
...
- integer division => divUp()
- cast to 'int' => cvCeil()
8 years ago
Alexander Alekhin
9ca39821c8
core: divUp function
8 years ago
Alexander Alekhin
2e608b1c97
Merge pull request #9306 from alalek:cmake_fix_macro
...
cmake: fix __STDC macros for opencv_world build
8 years ago
Alexander Alekhin
dcc63d7408
Merge pull request #9248 from alalek:alloc_refactoring
8 years ago
Alexander Alekhin
5e32de8173
cmake: fix __STDC macros for opencv_world build
8 years ago
Alexander Alekhin
2f4a3e40eb
Merge pull request #9287 from dkurt:tensorflow_unit_tests
8 years ago
Alexander Alekhin
15aa0df23c
Merge pull request #9297 from alalek:akaze_remove_rand
8 years ago
Jiri Horner
3166d0c667
Merge pull request #9249 from hrnr:akaze_part3
...
[GSOC] Speeding-up AKAZE, part #3 (#9249 )
* use finding of scale extremas from fast_akaze
* incorporade finding of extremas and subpixel refinement from Hideaki Suzuki's fast_akaze (https://github.com/h2suzuki/fast_akaze )
* use opencv parallel framework
* do not search for keypoints near the border, where we can't compute sensible descriptors (bugs fixed in ffd9ad99f4
, 2c5389594b
), but the descriptors were not 100% correct. this is a better solution
this version produces less keypoints with the same treshold. It is more effective in pruning similar keypoints (which do not bring any new information), so we have less keypoints, but with high quality. Accuracy is about the same.
* incorporate bugfix from upstream
* fix bug in subpixel refinement
* see commit db3dc22981e856ca8111f2f7fe57d9c2e0286efc in Pablo's repo
* rework finding of scale space extremas
* store just keypoints positions
* store positions in uchar mask for effective spatial search for neighbours
* construct keypoints structs at the very end
* lower inlier threshold in test
* win32 has lower accuracy
8 years ago
dkurt
339793143c
Unit tests for TensorFlow importer
8 years ago