- 27 Jul, 2013 2 commits
- 22 Jul, 2013 1 commit
-
-
Vadim Pisarevsky authored
-
- 21 Jul, 2013 3 commits
-
-
Daniel Angelov authored
-
Daniel Angelov authored
-
Daniel Angelov authored
-
- 20 Jul, 2013 2 commits
-
-
Daniel Angelov authored
-
Daniel Angelov authored
Update on the class to reflect the review. Split the class into virtual and implementation. change of name to LineSegmentDetector, using Input/Output-Arrays, general clean ups.
-
- 19 Jul, 2013 1 commit
-
-
StevenPuttemans authored
-
- 18 Jul, 2013 2 commits
-
-
Andrey Pavlenko authored
-
Andrey Pavlenko authored
-
- 17 Jul, 2013 1 commit
-
-
Alexander Smorkalov authored
-
- 15 Jul, 2013 1 commit
-
-
Daniel Angelov authored
-
- 14 Jul, 2013 2 commits
-
-
Daniel Angelov authored
-
Daniel Angelov authored
-
- 13 Jul, 2013 3 commits
-
-
Daniel Angelov authored
-
Daniel Angelov authored
-
Daniel Angelov authored
-
- 12 Jul, 2013 1 commit
-
-
Daniel Angelov authored
-
- 10 Jul, 2013 1 commit
-
-
kdrobnyh authored
-
- 03 Jul, 2013 1 commit
-
-
Heinz Hofbauer authored
Example: img of size 10x10 and templ of size 11x9. In subsequent code this will results in either width or height of corrSize to be zero (0). Line 261 will call crossCorr which will then have a zero size of either blocksize.width or blocksize.height resulting in a division by zero crach in lines 137 or 138.
-
- 26 Jun, 2013 1 commit
-
-
Sergei Nosov authored
-
- 24 Jun, 2013 2 commits
-
-
abidrahmank authored
-
abidrahmank authored
http://www.code.opencv.org/issues/2023 eg: In [3]: box = ((10,10),(5,5),0) In [4]: cv2.boxPoints(box) Out[4]: array([[ 7.5, 12.5], [ 7.5, 7.5], [ 12.5, 7.5], [ 12.5, 12.5]], dtype=float32)
-
- 13 Jun, 2013 1 commit
-
-
Sergei Nosov authored
-
- 07 Jun, 2013 3 commits
- 06 Jun, 2013 1 commit
-
-
IanVS authored
-
- 31 May, 2013 2 commits
-
-
Roman Donchenko authored
Yes, it's as ludicrous as it sounds, but it's still true. Bizarrely, the previous commit makes CLAHE run about 10% slower on Android, even though it doesn't even touch any CLAHE code. Splitting it off fixes that, although the reason it does is a mystery for the ages. It's cleaner when it's in its own file, anyway. ;=]
-
Roman Donchenko authored
This should allow many algorithms to take advantage of more parallelization technologies.
-
- 24 May, 2013 2 commits
-
-
abidrahmank authored
-
abidrahmank authored
-
- 18 May, 2013 1 commit
-
-
ericgreveson authored
Ensure that all channels are considered when comparing multi-channel histograms
-
- 13 May, 2013 1 commit
-
-
Andrey Kamaev authored
-
- 29 Apr, 2013 1 commit
-
-
ericgreveson authored
When comparing histograms that look like multi-channel images (e.g a 3D histogram, of 4x4x4 bins, might appear as a CV_32FC4 matrix), cv::compareHist would complain because it was expecting the matrix type() == CV_32F. Now we test matrix depth() == CV_32F instead.
-
- 26 Apr, 2013 1 commit
-
-
Roman Donchenko authored
The orientation of convexHull's result is currently the opposite of what the documentation would suggest: >>> import cv2, numpy as np >>> points = np.array([[0,0],[0,1],[1,0]], dtype=np.int32) >>> cv2.convexHull(points, clockwise=False) array([[[1, 0]], [[0, 1]], [[0, 0]]], dtype=int32) >>> cv2.convexHull(points, clockwise=True) array([[[0, 0]], [[0, 1]], [[1, 0]]], dtype=int32) Changing the function itself is probably not a good idea at this point, so this fixes the documentation by flipping the coordinate system. I also removed the mention of the origin, since it's irrelevant for this function.
-
- 17 Apr, 2013 1 commit
-
-
tim36272 authored
Clarified what value floodfill sets pixels in the mask to when FOODFILL_MASK_ONLY is set.
-
- 16 Apr, 2013 1 commit
-
-
Andrey Kamaev authored
-
- 15 Apr, 2013 1 commit
-
-
Andrey Kamaev authored
Also cv::, cv::gpu:: and cv::ocl:: namespace prefixes can be safely omitted inside CV_ENUM and CV_FLAGS
-