Maksim Shabunin
8011be2810
Python bindings: added std::vector< std::pair< int, double > > type read support
9 years ago
berak
11e563fd5d
python: support for size_t args (default value)
9 years ago
Maksim Shabunin
70bc268c1a
Fixed problem with nonfree python test: could not find local test images
9 years ago
Vitaly Tuzov
34b3d31f54
Fix for nonlocal data requirement in test2.py
9 years ago
Vitaly Tuzov
64f02aa72d
Backport of setRNGSeed implementation and python test randomness fix
9 years ago
Vladislav Sovrasov
a490b64e9b
Add function setRNGSeed and seed setup in python tests
9 years ago
Vitaly Tuzov
ea3746bd15
Made texture flow python test less strict to fix it on AARCH64
9 years ago
Vitaly Tuzov
24361733e4
Fixed face detection python test
9 years ago
Vladislav Sovrasov
fd61978795
Add goodfeatures python test and cleanup in test directory
9 years ago
Vitaly Tuzov
96903dc4ad
Test data necessary for python samples added to test package.
...
Test launch script updated to run new tests as well.
9 years ago
Vladislav Sovrasov
e2434ab7c3
Use AKAZE detector instead of ORB in feature_homography test
9 years ago
Vitaly Tuzov
d29eb2938c
Calibration test temporary disabled
9 years ago
Vladislav Sovrasov
22b028b64b
Fix warnings in python3
9 years ago
Vladislav Sovrasov
e4fed417d2
Add segmentation and object tracking python tests
9 years ago
Vladislav Sovrasov
0c6e09f060
Changes in facedetect test
9 years ago
Vladislav Sovrasov
87fc75c6d7
Improvements in tests, bugfix in digits_video sample
9 years ago
Vladislav Sovrasov
4e3a6328ba
Fixes in calibration and camshift tests
9 years ago
Vladislav Sovrasov
54c07ba0ff
Add 2 new tests, bugfixed in old tests
9 years ago
Vladislav Sovrasov
cb7cc81653
Add dft python test, fix platform depended result in morphology test
9 years ago
Vladislav Sovrasov
aaa43dc84f
Add morphology python test, fix python3 compabtibility in kmeans test
9 years ago
Vladislav Sovrasov
56571561b4
Add k-means python test, fix loading images in calibration test
9 years ago
Vladislav Sovrasov
5625d79508
Fix loading images in python tests
9 years ago
Vladislav Sovrasov
ab4d375349
Add new tests on python
9 years ago
Alexander Alekhin
d2e5f90f32
cmake: fix cv2.lib conflict for python2/3 bindings (MSVS)
9 years ago
Vitaly Tuzov
25b4d8a1b5
Added images necessary for tests
9 years ago
Vitaly Tuzov
aaa30dc5b6
Make some tests less strict due to improvement of related algorithms in master branch
9 years ago
Vitaly Tuzov
e0f426f78b
Backport of new python tests from master branch(PR https://github.com/Itseez/opencv/pull/6025 ).
...
At the moment tests requre samples/data copied to source location from master branch.
9 years ago
Nikolay Polyarniy
46e08d34dd
T-API python support implemented:
...
- cv2.UMat implemented - python thin wrapper for UMat
- no implicit copy from GPU to Host done, resulting UMat can be passed to next function without overhead
- cv2.UMat.get() - to fetch data to Host
- new tests covers: ORB, BFMatcher, goodFeaturesToTrack, calcOpticalFlowPyrLK
9 years ago
Alexander Alekhin
be23846c4e
update osx and ios build_framework.py
9 years ago
Maksim Shabunin
84f37d352f
HAL moved back to core
9 years ago
Alexander Alekhin
0db10a3052
fixes #5019 : python and java bindings become CMake modules (loadable plugins)
9 years ago
berak
1048b235bf
add Rect2d to python bindings
9 years ago
Maksim Shabunin
f49936a849
Fixed cmake and build issues when using Visual Studio 2015
9 years ago
Wangyida
ca599eee40
python modification for Point3D
9 years ago
Roman Donchenko
7d28541bbe
test2.py: fail if a downloaded image can't be decoded
...
(cherry picked from commit 56f17e4921
)
9 years ago
Maksim Shabunin
6e9d0d9a0c
Visual Studio 2015 warning and test fixes
9 years ago
Roman Donchenko
08ad3b500b
test2.py: switch from urllib to urllib2
...
urllib2 raises an exception if an HTTP request produces an error code,
making the test fail earlier.
9 years ago
Roman Donchenko
56f17e4921
test2.py: fail if a downloaded image can't be decoded
9 years ago
Roman Donchenko
293ea03dcc
test2.py: remove unused imports
9 years ago
boatx
d674965bf9
Fixing typo in variable name.
9 years ago
Maksim Shabunin
fef7509eed
NumpyAllocator: check reference count before actual release, revert flann changes
10 years ago
Jaime Fernandez
c613ee2da4
BUG: ndarray to Mat conversion with NPY_RELAXED_STRIDES set
...
Add logic to avoid nonsense strides when dimension size is 1 and
NumPy is built with NPY_RELAXED_STRIDES from tripping OpenCV.
10 years ago
Alexander Alekhin
caaf60ba00
remove bindings generation for DetectionBasedTracker
10 years ago
Maksim Shabunin
78ddc567f9
Python generator: moved base class handling to the generate step
10 years ago
Maksim Shabunin
c137ba53a0
Wrap ANN_MLP class into Python
10 years ago
Mansour Moufid
b99f7a29df
Cast some image coordinates and sizes to double.
...
Conflicts:
modules/gpu/perf/perf_imgproc.cpp
Cast a long integer to double explicitly.
Conflicts:
modules/python/src2/cv2.cpp
Cast some matrix sizes to type int.
Change some vector mask types to unsigned.
Conflicts:
modules/core/src/arithm.cpp
10 years ago
Ying Xiong
2d8b4fea9f
Add #ifdef's such that python wrapper builds independent of other components
10 years ago
Maksim Shabunin
e94dfcee0d
Add python test for inheritance structure generation
10 years ago
Maksim Shabunin
82adf7955f
Fix python submodules inheritance detection
10 years ago
Tim D. Smith
b9b743bbe3
Don't explicitly link Python on OS X
...
Explicitly linking to a Python framework on OS X prevents modules from
being built against one Python (i.e. system python) and imported from
another (i.e. Homebrew python); the interpreter segfaults if there's a
linkage to a foreign Python. Building the module with `-undefined
dynamic_lookup` instead of an explicit link allows the symbols to be
resolved at load time from a compatible python.
10 years ago