Tomoaki Teshima
addb15383a
fix run time error
9 years ago
Alexander Alekhin
c3456c0754
Merge pull request #6685 from ioxp:dofDocu
9 years ago
Alexander Alekhin
68c63188eb
Merge pull request #6683 from alalek:cmake_hal
9 years ago
Philipp Hasper
45bd56e28a
rigidTransform: only four DoF
...
combinations of translation, rotation, and uniform scaling equals four degrees of freedom
9 years ago
Alexander Alekhin
f4ebc504d1
cmake: refactor HAL attaching process
9 years ago
Aleksandar Atanasov
0637ca21dc
Update houghlines.py
9 years ago
Aleksandar Atanasov
4fa86dad26
Update houghcircles.py
9 years ago
Aleksandar Atanasov
445349dd7d
Same fix as with the houghcircles
...
Moved second `imshow()` inside the if-statement to prevent error when no lines have been found and the function is called with an empty `cdst`.
9 years ago
Aleksandar Atanasov
c5bbc0353c
Added small fix when circles are not detected
...
I noticed that I missed the fact that `cimg` is used in the second `imshow()` call. Changed the scope of the second function call to be within the if-statement. Otherwise in cases where have not been detected the second `imshow()` will attempt to use `cimg` which will be empty leading to an error.
9 years ago
Philipp Nordhus
4a529cd641
Return reference on iterator indirection/subscript
9 years ago
Ankit Yadav
c62eda023d
Fix typo
9 years ago
Tomoaki Teshima
87d0c91dcf
fix warning of build
9 years ago
Aleksandar Atanasov
25e2e8aa3c
Removed trailing spaces at line 32
9 years ago
Tomoaki Teshima
d0a8390963
fix run time error on Mac
...
* integrate HW version and SW version to same function
9 years ago
Alexander Alekhin
e3844e0f26
Merge pull request #6649 from adamrankin:msmf_crash_fix
9 years ago
Adam Rankin
2577194c70
Correcting return type from videoDevice::findType to be int thus allowing detection of failed device init request
9 years ago
Alexander Alekhin
1b6e02793c
Merge pull request #6645 from tomoaki0705:fixTypoEigen
9 years ago
Tomoaki Teshima
fd76ed5c0f
fix to support wider compiler
...
* check compiler more strictly
* use gcc version of fp16 conversion if it's possible (gcc 4.7 and later)
* use current SW implementation in other cases
9 years ago
Tomoaki Teshima
6f6eebbcb9
fix warning
9 years ago
Vladislav Sovrasov
46fb46c54e
Add an extended version of CalibrateCamera function
9 years ago
Vladislav Sovrasov
055f5c7395
Change names of some internal functions
9 years ago
Tomoaki Teshima
d1c1c01761
fix typo
9 years ago
Tomoaki Teshima
fbfd3158a7
fix corner case when number is small
9 years ago
Tomoaki Teshima
15f8bc6f37
fix cmake
...
* enable fp16 feature correctly with gcc on x86/x86_64
9 years ago
Maksim Shabunin
532885c12b
Merge pull request #6607 from alalek:issue_6604
9 years ago
Maksim Shabunin
89a1e806b7
Merge pull request #6628 from sovrasov:hal_samples_update
9 years ago
Tomoaki Teshima
4239bac4ed
fix warning of doc
...
* update the comment to real header
9 years ago
Tomoaki Teshima
eccf2fa4c3
follow other interface
...
* remove useHW option
* update test
9 years ago
k-shinotsuka
43d5988df6
improve to calculate norm
9 years ago
Suleyman TURKMEN
7c5b981c17
Update drawing.cpp
9 years ago
Vladislav Sovrasov
901e1e4608
Update HAL samples
9 years ago
Vladislav Sovrasov
a2d0cc878c
Implement internal HAL for GEMM and matrix decompositions
9 years ago
Louis Letourneau
c03d778ec7
This fixes the seeking in h264 B-Frame enabled video issue. #4890
9 years ago
Susmit
d913463932
Terrible bugs in the tutorial code in py_pose.markdown
...
There were two bugs that were solved here.Changes were done after extreme testing.
1.replaced cv2.solvePnPRansac() with cv2.solvePnP() previous fc was giving terrible errors.
2.The code was incapable of saving edited pics;Now fixed with little code mods.
9 years ago
Aleksandar Atanasov
14deab252b
Fix houghlines.py when no lines found
...
In the C++ equivalent of this example a check is made whether the vector (here in Python we have a list) actually has any lines in it that is whether the Hough lines function has managed to find any in the given image. This check is missing for the Python example and if no lines are found the application breaks.
9 years ago
Aleksandar Atanasov
cf0df733da
Fix houghcircles.py when no circles found
...
In the C++ equivalent of this example a check is made whether the vector (here in Python we have a list) actually has any circles in it that is whether the Hough circles function has managed to find any in the given image. This check is missing for the Python example and if no circles are found the application breaks.
9 years ago
Aleksandar Atanasov
5d4f22e096
Merge pull request #1 from Itseez/master
...
Updating own opencv fork to 3.x
9 years ago
Susmit
98dce911ca
Update py_calibration.markdown
...
In the camera calibration code { cv2.cornerSubPix() } will be of no use.In the updated code it is assigned to the (corners2) variable
which is passed down to { cv2.drawChessboardCorners() }
9 years ago
Alexander Alekhin
e1ba4399e8
Merge pull request #6611 from tomoaki0705:fixPerformanceSplitAarch64
9 years ago
Tomoaki Teshima
070e4d754e
let the performance test of split pass on 64bit ARM
...
* loosen the threshold only under aarch64
* fix #6610
9 years ago
Alexander Alekhin
d3930cdee1
Merge pull request #6482 from paroj:filestorage_py
9 years ago
Vadim Pisarevsky
a2d8e7fa6e
Merge pull request #6485 from vagran:vagran-patch-1
9 years ago
Vadim Pisarevsky
7f9319924b
Merge pull request #6537 from Slonegg:opeeni2_multiple_devices
9 years ago
Vadim Pisarevsky
40686415f9
Merge pull request #6593 from bramton:documentation-update
9 years ago
Vadim Pisarevsky
904cfa576c
Merge pull request #6597 from sturkmen72:issue_4678
9 years ago
Alexander Alekhin
ff0601cda5
core: prevent changes in 'std' namespace
9 years ago
Maksim Shabunin
1e667de1f3
HAL math interfaces: fastAtan2, magnitude, sqrt, invSqrt, log, exp
9 years ago
Alexander Alekhin
f6fa1cee2b
Merge pull request #6008 from amroamroamro:fix_sparse_snippet
9 years ago
Marek Smigielski
ef45005056
Adding support for pointer generation. Fixes #6605
9 years ago
Maksim Shabunin
c344435378
Merge pull request #6602 from berak:patch-1
9 years ago