ville-v
1de10f9f86
Add files via upload
...
Fix issue #8280 : "fastmath.h related compile errors with Embarcadero C++ Builder 10.1"
8 years ago
mrquorr
d8425d8881
finished for one sample
...
Finished with several samples support, need regression testing
Gave a more relevant name to function (getVotes)
Finished implicit implementation
Removed printf, finished regresion testing
Fixed conversion warning
Finished test for Rtrees
Fixed documentation
Initialized variable
Added doxygen documentation
Added parameter name
8 years ago
Alexander Alekhin
649bb7ac04
core: parallel_for_(): update RNG state of the main thread
8 years ago
Alexander Alekhin
ebdd74105a
core(test): add regression test for RNG in parallel_for_()
8 years ago
Alexander Alekhin
b28fd79fdc
core: parallel_for_(): propagate RNG state from the main thread
8 years ago
Alexander Alekhin
78784040aa
Merge pull request #8249 from vskarlsruhe:patch-1
8 years ago
Alexander Alekhin
2570a5af38
Merge pull request #8292 from sovrasov:backport_8267
8 years ago
umbraclet16
17ece5861a
Solve issue #8264
...
Fix bug in camera_calibration.cpp that the program tries to
parse input of type VIDEO_FILE as IMAGE_LIST which causes the
program to crash.
8 years ago
vskarlsruhe
6e12391c91
Code cleanup, removed cv:: because using namespace cv is already used.
8 years ago
Jejos
5169c79978
fix medianBlur accessviolation
...
medianBlur called with "empty" source and ksize >= 7 crashes application with accessviolation. With this extra assert this is avoided and the application may normally catch the thrown exception.
8 years ago
Maksim Shabunin
220d1f0b3e
Merge pull request #8231 from paroj:pytype
8 years ago
vskarlsruhe
ed9c924102
Code easier to read now
...
Increase readability by using namespace std
8 years ago
Vladislav Sovrasov
710506e9e2
calib3d: add a new overload for recoverPose
8 years ago
Maksim Shabunin
c4c1c4c9bb
Replaced several hal:: classes with functions, marked old variants deprecated
8 years ago
Vitaly Tuzov
61404dd2ac
imgproc HAL header inclusion moved
8 years ago
abratchik
276e47afae
fix #7833
8 years ago
Alexander Alekhin
dcbed8d676
Merge pull request #8250 from tomoaki0705:fixNonAsciiChar
8 years ago
Alexander Alekhin
eee638fd81
Merge pull request #8244 from sovrasov:adjust_roi_fix
8 years ago
Alexander Alekhin
c624d82383
Merge pull request #8239 from tomoaki0705:buildUniversalIntrinsicBlend
8 years ago
Alexander Alekhin
0c00242f7a
Merge pull request #8235 from berak:fix_dshow_leak
8 years ago
Vadim Pisarevsky
12d7429ff0
Merge pull request #8064 from terfendail:sgbm_bigbuffer
8 years ago
Tomoaki Teshima
822c67fdee
remove non ASCII character from comment
8 years ago
vskarlsruhe
56cedfc4d2
Update AddingImages.cpp
...
If-condition was always true (alpha = 0.5 is set in Line 19).
Now the user input is checked to be between 0 and 1.
This is correct in the tutorial code for OpenCV 2.4.
8 years ago
PkLab.net
e03c81d90a
Change image e small fix to cv::ellipse() Doc
8 years ago
Tomoaki Teshima
aec59aba34
suppress warnings
...
- brush up the implementation
8 years ago
oulenz
28cfb07445
FLANN_INDEX_KDTREE = 0 -> 1
...
0 corresponds to FLANN_INDEX_LINEAR
8 years ago
oulenz
9cb13435a1
FLANN_INDEX_KDTREE = 0 -> 1
...
0 corresponds to FLANN_INDEX_LINEAR
8 years ago
oulenz
29eda007bb
Fix `FLANN_INDEX_KDTREE`, add `FLANN_INDEX_LSH` initialisation
...
Add initialisations to make clear what values actually have to be passed.
Moreover, in accordance with 383559c228/modules/flann/include/opencv2/flann/defines.h (L68)
, I believe `FLANN_INDEX_KDTREE` was being initialised wrongly in the code examples, 1 should be correct, whereas 0 is `FLANN_INDEX_LINEAR`.
8 years ago
Alexander Alekhin
ee9c0f5f9c
Merge pull request #8234 from alalek:issue_8121
8 years ago
Maksim Shabunin
a9e33fe54e
Merge pull request #8243 from sovrasov:hal_round_to_cvround
8 years ago
Maksim Shabunin
e192c6842e
Merge pull request #8240 from hewj03:issue_1012_contrib
8 years ago
Vladislav Sovrasov
595437bdd1
hal: replace round() with cvRound()
8 years ago
Vladislav Sovrasov
14451f3f06
core: fix adjustROI behavior on indexes overflow
8 years ago
Wenju He
9fbce6c8c8
fix multiband_blend.cu build error in issue opencv_contrib#1012
8 years ago
ionut
a41d877fe6
Change the value of bit/pixel from channels to 8*channels because videos encoded
...
by cap_mjpeg_encoder.cpp don't play on windows media player.
Issue number #8113
8 years ago
Alexander Alekhin
88a338a3eb
cmake: disable pkg-config for Apple frameworks
8 years ago
berak
d7240d1a28
fix leaking handle in cap_dshow.cpp
8 years ago
Vitaly Tuzov
9a4b5a4545
OpenVX calls updated to use single common OpenVX context per thread
8 years ago
Alexander Alekhin
ec7f74f7b4
core(TLS): add cleanup() method
8 years ago
Alexander Alekhin
eaba0e6358
cmake: append '-framework UIKit' for videoio/imgcodecs module
8 years ago
Alexander Alekhin
f1c8e04268
ios framework: don't disable opencv_world in dynamic framework
8 years ago
Alexander Alekhin
a78d143c98
ios framework: refactor code (no functional changes)
8 years ago
Pavel Rojtberg
789dc0a3b7
python: type of initial_button_state must match format string
8 years ago
Fangjun KUANG
526220a171
Fix typos in the documentation ( #8226 )
...
* fix typos.
* Fix typos.
* Fix typos.
* Fix typos.
* Fix typos.
8 years ago
Vadim Pisarevsky
5bfaf9931b
Merge pull request #8228 from csukuangfj:csukuangfj-patch
8 years ago
Vadim Pisarevsky
007354ebaf
Merge pull request #8233 from Sahloul:features/python_matx
8 years ago
Hamdi Sahloul
232d6b87f4
cv::Matx python wrapper
8 years ago
Fangjun KUANG
b1851e2f16
Add support to print `cv::UMat`.
...
Now a user can use `std::cout` to print an object of `cv::UMat` just like `cv::Mat`.
8 years ago
Tomoaki Teshima
64cf206fb5
optimize blend using universal intrinsic
...
- add more channels/depth performance test for blend
8 years ago
Alexander Alekhin
b2da9df82d
Merge pull request #8221 from csukuangfj:csukuangfj-path-2
8 years ago