Alexander Alekhin
44bda8fbb7
Merge pull request #7044 from wolever:master
8 years ago
Alexander Alekhin
32c239085d
Merge pull request #7067 from tomoaki0705:fixBuildErrorJetsonK1
8 years ago
Tomoaki Teshima
3debc78a5f
fix build error on JetsonTK1
...
* avoid using vld1_f16 and vst1_f16 on gcc 4 series (Ubuntu 14.04)
* guard correctly with #if
* use static inline
8 years ago
Vadim Pisarevsky
c1d73e4fca
Merge pull request #7059 from berak:doc_python_drawkeypoints
8 years ago
Vadim Pisarevsky
0d8a21efd5
Merge pull request #7016 from lewgate:bugfix_2
8 years ago
Vadim Pisarevsky
28d28a2607
Merge pull request #7024 from paroj:semanticidx
8 years ago
Vadim Pisarevsky
b316aa3710
Merge pull request #7043 from alalek:add_nonfree_flag
8 years ago
Vadim Pisarevsky
a95d63dab6
Merge pull request #7042 from alalek:update_6967
8 years ago
Vadim Pisarevsky
39ebca5dbf
Merge pull request #7047 from tomoaki0705:brushUpFp16Cuda
8 years ago
Maksim Shabunin
ad974de165
Merge pull request #7066 from StevenPuttemans:fix_build_cuda_issues
8 years ago
Alexander Alekhin
2833aeb310
Merge pull request #7060 from catree:add_camera_model_doc
8 years ago
Alexander Alekhin
9c90b6271c
Merge pull request #7040 from sovrasov:calib_tutorial_code_update
8 years ago
StevenPuttemans
2ad411f914
fixing issues
8 years ago
Vladislav Sovrasov
46c8b09453
Improvements in camera_calibration tutorial code
8 years ago
berak
d2a1994d71
python docs: fix missing output image in cv2.drawKeypoint examples
8 years ago
catree
74b899d8b0
Modify the figure of the pinhole camera model with pixels starting from the uv axis.
8 years ago
mschoeneck
5f30a0a076
Merge pull request #6958 from mschoeneck:Common-Canny-parallelization
...
* Common Canny parallelization added. TBB and single thread code removed. Final pass vectorized with SSE2 intrinsics.
* wrong #ifdef replaced with #if
* Merged to actual Canny version
* Merged common parallelized Canny with actual Canny implementation
* Remove 'Mutex *mutex' and pass 'Mutex mutex' from outside to parallelCanny
* Replaced extern Mutex with intern mutable Mutex.
8 years ago
Tomoaki Teshima
2db2d137ce
follow the naming rule as other API
...
* stop using 'CUDA' prefix
* add explanation
8 years ago
Alexander Alekhin
b12286329f
imgproc: sepFilter: update OpenCL condition
...
Problem is observed with test_loop_times=100
in corner cases like 93x1 or similar
8 years ago
Alexander Alekhin
2812762d6b
imgproc: disable IPP for GaussianBlur in case of ROI
8 years ago
matze
37cccf17c0
imgproc: Prefer OCL calculation before IPP in GaussianBlur.
8 years ago
David Wolever
b42288c2de
Cleaner fix for crash on double-stop of CvVideoCamera
8 years ago
Alexander Alekhin
18e7afdfd9
cmake: add OPENCV_ENABLE_NONFREE option and macro
8 years ago
Vadim Pisarevsky
35d0a45df6
Merge pull request #7020 from StevenPuttemans:add_scale_option
8 years ago
Vadim Pisarevsky
d67e6f5cc9
Merge pull request #7029 from wolever:master
8 years ago
Maksim Shabunin
1ae9a5d1d8
Merge pull request #7038 from StevenPuttemans:fix_module_including
8 years ago
Vadim Pisarevsky
29afb83f24
Merge pull request #7039 from vpisarev:2_small_fixes
8 years ago
Vadim Pisarevsky
d7ee62f03b
1. fix warning from Xcode 7.x
...
2. fixed parsing of "cat[range_spec]ord[range_spec]" type specification string when using ml::TrainData::loadFromCSV(). Thanks to A. Kaehler for reporting it
8 years ago
StevenPuttemans
e42750c63c
fix including of correct header files #7027
8 years ago
Alexander Alekhin
b2698f24b0
Merge pull request #7033 from tomoaki0705:brushUpFp16
8 years ago
Vadim Pisarevsky
7eee5cb724
Merge pull request #7026 from sovrasov:calib_points_number
8 years ago
Vadim Pisarevsky
b8d743bf50
Merge pull request #6970 from K-Shinotsuka:issue6
8 years ago
Vadim Pisarevsky
0a7e53da0a
Merge pull request #7010 from K-Shinotsuka:issue10
8 years ago
Vadim Pisarevsky
03d6c5e473
Merge pull request #7011 from K-Shinotsuka:issue11
8 years ago
Alexander Alekhin
6a69852df1
Merge pull request #7030 from jpaveggio:patch-1
8 years ago
k-shinotsuka
1a18a33688
improve SumSqr_SIMD<schar, int, int>()
8 years ago
Tomoaki Teshima
87ca607fd4
brush up convertFp16
...
* raise an error when wrong bit depth passed
* raise an build error when wrong depth is specified for cvtScaleHalf_
* remove unnecessary safe check in cvtScaleHalf_
* use intrinsic instead of direct pointer access
* update the explanation
8 years ago
Juan Pablo Aveggio
ba5f9d68c4
Update bagofwords.cpp
8 years ago
David Wolever
3d19de2b58
Fix crash on double-stop of CvVideoCamera
8 years ago
k-shinotsuka
0b4e06ad3c
improve SumSqr_SIMD<uchar, int, int>()
8 years ago
k-shinotsuka
5775ace5e0
improve thresh_8u()
8 years ago
Vadim Pisarevsky
fc742da6e3
Merge pull request #6959 from LeoBras:Better_StereoBM
8 years ago
Jeff McBride
562c15cbe9
Don't assume all images have the same number of calibration points
...
Cast to (int) to avoid warnings
Add test for different points number case in fisheye calibration function
8 years ago
Pavel Rojtberg
15dabc11b5
Mat: use row/ col instead of i0/ i1 for parameter names in 2D case
...
this improves documentation when using an IDE and reflects that Mats are
row major.
8 years ago
StevenPuttemans
d8698fc359
allow for screen size related resizing
8 years ago
Alexander Alekhin
da2810918c
Merge pull request #6991 from tomoaki0705:featureGpuMatFp16
8 years ago
Alexander Alekhin
4f7b3e8a56
Merge pull request #7018 from catree:add_camera_model_doc
8 years ago
catree
6e931aaab7
Add pinhole camera model illustration in calib3d documentation.
8 years ago
Tomoaki Teshima
2974b049e7
cudev: add feature to convert FP32(float) from/to FP16(half) on GPU
...
* add feature of Fp16 on GPU (cudev)
* add test
* leave template function as unimplemented to raise error
8 years ago
lewgate
4ae4a705d5
Fix a bug for seam_finders.cpp when computing the source and destination points of the seam
8 years ago