- 26 Jun, 2013 1 commit
-
-
Sergei Nosov authored
-
- 13 Jun, 2013 1 commit
-
-
Sergei Nosov 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
-
- 13 May, 2013 1 commit
-
-
Andrey Kamaev authored
-
- 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.
-
- 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
-
- 04 Apr, 2013 1 commit
-
-
Alexander Smorkalov authored
-
- 01 Apr, 2013 1 commit
-
-
Vladislav Vinogradov authored
-
- 25 Mar, 2013 1 commit
-
-
Vladislav Vinogradov authored
-
- 18 Mar, 2013 1 commit
-
-
Daniil Osokin authored
-
- 25 Feb, 2013 2 commits
-
-
Daniil Osokin authored
-
Daniil Osokin authored
-
- 24 Feb, 2013 1 commit
-
-
Daniil Osokin authored
-
- 20 Feb, 2013 2 commits
-
-
Anna Kogan authored
-
Anna Kogan authored
-
- 13 Feb, 2013 1 commit
-
-
Amro authored
bug #2709
-
- 08 Feb, 2013 1 commit
-
-
Vadim Pisarevsky authored
-
- 06 Feb, 2013 1 commit
-
-
Andrey Kamaev authored
-
- 04 Feb, 2013 3 commits
-
-
Sergei Nosov authored
-
Sergei Nosov authored
-
Sergei Nosov authored
-
- 02 Feb, 2013 1 commit
-
-
Andy Maloney authored
Remove unused var "total" Declare vars as locally as possible
-
- 01 Feb, 2013 1 commit
-
-
Andy Maloney authored
-
- 31 Jan, 2013 1 commit
-
-
Anna Kogan authored
-
- 30 Jan, 2013 1 commit
-
-
Ivan Korolev authored
-
- 28 Jan, 2013 1 commit
-
-
Daniil Osokin authored
-
- 23 Jan, 2013 1 commit
-
-
Andrey Pavlenko authored
- add syntetic images generation function to ts - use generated syntetic images
-
- 10 Jan, 2013 1 commit
-
-
Andrey Kamaev authored
issue #2678
-
- 09 Jan, 2013 1 commit
-
-
Vadim Pisarevsky authored
-
- 26 Dec, 2012 1 commit
-
-
Kirill Kornyakov authored
-
- 25 Dec, 2012 1 commit
-
-
Andrey Kamaev authored
On some platforms sin and cos are calculated in single precision resulting in diversity of results.
-
- 18 Dec, 2012 1 commit
-
-
Daniil Osokin authored
-
- 17 Dec, 2012 2 commits
-
-
Daniil-Osokin authored
-
Daniil-Osokin authored
-
- 15 Dec, 2012 1 commit
-
-
Andrey Kamaev authored
Old implementation did lut[i] = 255 * (count(Y <= i)) / (width * height) which actually shifts uniform histograms. From now histogram is equalized as C = count(Y == min(Y)) lut[i] = 255 * (count(Y <= i) - C) / (width * height - C)
-
- 14 Dec, 2012 1 commit
-
-
Vsevolod Glumov authored
-
- 12 Dec, 2012 1 commit
-
-
Andrey Kamaev authored
-