Alexander Alekhin
44b2f9637a
Revert "suppress warning on GCC 7 and later"
...
This reverts commit a630ad73cb
.
3 years ago
Tomoaki Teshima
87ef6a9cc1
build: suppress the warning
...
DRY
bump the version
3 years ago
Tomoaki Teshima
a630ad73cb
suppress warning on GCC 7 and later
3 years ago
Alexander Alekhin
0f3de805f4
build: fix warnings
3 years ago
Kumataro
dd7b9000ad
Merge pull request #22064 from Kumataro:3.4-fix22052
...
* imgcodecs: jpeg: add IMWRITE_JPEG_SAMPLING_FACTOR parameter
* fix compile error
* imgcodecs: jpeg: add CV_LOG_WARNING() and fix how to initilize Mat
* imgcodecs: jpeg: fix for C++98 mode.
* samples: imgcodec_jpeg: Remove license
3 years ago
catree
a04f9e7a59
Add more references. Update missing references with webarchive. Use mathbf for matrices. Check that the determinant of the rotation matrix is not negative (reflection), and correct it if it is the case.
3 years ago
berak
8f9c36b730
Update text_detection.py
...
there is a recent change, how `std::vector<int>` is wrapped in python,
it used to be a 2d array (requirig that weird `[0]` indexing), now it is only 1d
3 years ago
Suleyman TURKMEN
2647902fee
Update python samples
3 years ago
Alexander Alekhin
a47952146a
samples: query for Python 3.10 setup
3 years ago
APrigarina
ada16fd188
prevent index error in find_obj sample
3 years ago
Alexander Alekhin
b1a57c4cb2
fix 3.4 links
3 years ago
UncleLLD
62a010a25d
Merge pull request #21224 from UncleLLD:fix-cvtColor-error
...
fix cvtColor-error
* fix gray image channel error
* fix gray image channel error
* fix cvtColor error after the video end
* fix cvtColor error after the video end and change next variable
* fix cvtColor error after the video end
* reset next variable
* fix cvtColor error after the video end
* fix cvtColor error after the video end
3 years ago
Alexander Alekhin
65392d5e6b
cmake: fix OPENGL_LIBRARIES handling
3 years ago
Christian Clauss
ebe4ca6b60
Fix typos discovered by codespell
3 years ago
Christian Clauss
9cc60c9dd3
Use ==/!= to compare constant literals (str, bytes, int, float, tuple)
...
Avoid `SyntaxWarning` on Python >= 3.8
```
>>> "convolutional" == "convolutional"
True
>>> "convolutional" is "convolutional"
<stdin>:1: SyntaxWarning: "is" with a literal. Did you mean "=="?
True
```
Related to #21121
3 years ago
Nikolaos Pappas
968d94d417
Fix trackbar in falsecolor cpp sample
3 years ago
Alexander Alekhin
f77fdc0ce8
samples: fix build without threading support
3 years ago
Stanislaw Halik
3d93675ff9
fix link error on shared libs with -MT
3 years ago
Suleyman TURKMEN
9b76872708
restore LSD
3 years ago
Tsukasa Sugiura
f9bd83c854
fix cast in text detection sample
3 years ago
Suleyman TURKMEN
9d1e8b1e1d
Update convexhull.cpp
3 years ago
Alexander Alekhin
076587425e
build: eliminate build warnings
3 years ago
Alexander Panov
d6306f8ccb
Merge pull request #20564 from AleksandrPanov:update_kalman_sample
...
Update kalman sample
* updated view and comments, fixed dims
* updated view and comments, added statePost
4 years ago
Roland Meertens
2113af9c52
Updated grabcut example to show the background in a transparant way
4 years ago
berak
fd16222613
dnn: update links for the colorization samples
4 years ago
Vladimir
90be83ae99
Fix an arg for calcHist() in demos
...
`float* histRange = { range };` doesn't make much sense. `histRange` is
an array of array(s), so it should have a type of ptr to ptr. Strangely
some domos are correct as well as the example for the function
https://docs.opencv.org/master/d6/dc7/group__imgproc__hist.html#ga4b2b5fd75503ff9e6844cc4dcdaed35d
4 years ago
APrigarina
5e80bd3cc9
fix samples 3.4
4 years ago
jogo-
f4a79b0554
Merge pull request #20223 from jogo-:3.4_wp8_samples_typos
...
* Fix typo in App.xaml.cs
* Fix typo in App.xaml.cs
* Fix typo in App.xaml.cs
4 years ago
changh95
101d50703c
fix typo 'undistorsed'->'undistorted'
4 years ago
berak
1bced43e96
samples/dnn: better errormsg in openpose.py
4 years ago
Alex Kalmuk
b04d6a2d9b
Fix squares sample failure when a single file passed
4 years ago
Alexander Alekhin
7664e6d090
ml: use OpenCV license header for logistic regression
4 years ago
Daniel Playfair Cal
65b51e1538
Merge pull request #19690 from hedgepigdaniel:fix/calibration_fisheye
...
* fix(samples/camera_calibration): set new camera matrix for fisheye
* fix(camera_calibration): ignore inapplicable flags for fisheye
4 years ago
Alexander Smorkalov
4c48f1eed2
Removed unused variables found by pylint.
4 years ago
Alexander Alekhin
85009800b3
videoio(docs): fixes
4 years ago
Suleyman TURKMEN
9b399f3960
Update python samples
4 years ago
APrigarina
96570820ef
handle empty cameraMatrix
4 years ago
Anastasia M
eb90186614
Merge pull request #19417 from LupusSanctus:am/text_graph_identity
...
* Corrected SSD text graph generation for Identity nodes
* Added minor code corrections
4 years ago
Suleyman TURKMEN
2387813428
Update imageSegmentation.cpp, imageSegmentation.py
4 years ago
Anastasia Murzova
449ebc1b70
Corrected SSD text graph generation
4 years ago
Ixarias
3f14341629
Change Keymap wording for gray image in curve mode
...
Instead of being a copy of line 76, line 79 instead correctly indicates that it will show a histogram for a gray image in curve mode, as given by the code block at line 103 referencing image "gray" instead of image "im".
4 years ago
Maksim Shabunin
f65d75f5c8
Updated more links to forum.opencv.org
4 years ago
Alexander Reynolds
e3856dfe5d
hotfix: call isOpened() in python bg sub tutorial
...
https://github.com/opencv/opencv/issues/19299
4 years ago
Alexander Alekhin
b51ae87828
samples: check for Python 3.9
4 years ago
Sergei Slashchinin
1f3255d76b
Merge pull request #18591 from sl-sergei:download_utilities
...
Scripts for downloading models in DNN samples
* Initial commit. Utility classes and functions for downloading files
* updated download script
* Support YAML parsing, update download script and configs
* Fix problem with archived files
* fix models.yml
* Move download utilities to more appropriate place
* Fix script description
* Update README
* update utilities for broader range of files
* fix loading with no hashsum provided
* remove unnecessary import
* fix for Python2
* Add usage examples for downloadFile function
* Add more secure cache folder selection
* Remove trailing whitespaces
* Fix indentation
* Update function interface
* Change function for temp dir, change entry name in models.yml
* Update getCacheDirectory function call
* Return python implementation for cache directory selection, use more specific env variable
* Fix whitespace
4 years ago
Christos Malliaridis
3c25fd1ba5
Update and expand erosion / dilation tutorial
...
- Add python explanation for erosion and dilation
- Add java explanation for erosion and dilation
- Restructure and reword specific sections
4 years ago
Zhiyuan Chen
456af21d8b
fixes #18613
4 years ago
Maksim Shabunin
2dff2f36bf
Install: added prebuilt samples installation
4 years ago
dmici
6876f3b91d
fix missing 0.5 factor in anisotropic segmentation tutorial
5 years ago
Alessandro de Oliveira Faria (A.K.A.CABELO)
a86e036594
Merge pull request #18184 from cabelo:yolov4-in-model
...
ADD yolov4 in models.yml
5 years ago