Daniel Angelov
cedd768397
Fixed the M_PI to CV_PI
12 years ago
Daniel Angelov
965b3759b1
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.
12 years ago
abidrahmank
692d807fa0
gabor filter docs Bug#1894
12 years ago
StevenPuttemans
27ed32f833
Applied bugfix #3165 : Changed min_eps value
12 years ago
Andrey Pavlenko
6b047ca0eb
minor improvement (consistency, readability)
12 years ago
Andrey Pavlenko
74c72a1d7a
removing unreachible code
12 years ago
Vladislav Vinogradov
7b87d72d80
refactored generalized hough (both CPU and GPU):
...
removed set/get methods from Algorithm (implement owns)
removed GHT_* enumeration
12 years ago
Alexander Smorkalov
16cfc7a531
WindowsRT build warning fixes.
12 years ago
kdrobnyh
487ded8b27
Add IPP erosion and dilation
12 years ago
Daniel Angelov
694d9ff2eb
LSD enum now anonymous.
12 years ago
Daniel Angelov
d35601209e
Added define guard for ln10. Fixed some warnings.
12 years ago
Daniel Angelov
22c8010b2d
Added needed header, changed macro name.
12 years ago
Daniel Angelov
3350533f48
Fixed ambiguouty error, signess compare.
12 years ago
Daniel Angelov
6bd5e12be3
Added a sample to show usage of the class.
12 years ago
Daniel Angelov
e51e00ac5f
Added LSD accuracy tests.
12 years ago
Daniel Angelov
5350a2f1d9
Added Line Segmen Detector.
12 years ago
Roman Donchenko
ac39bfb4cc
Remove HAVE_CVCONFIG_H - it's always defined.
12 years ago
kdrobnyh
f8eb806565
Add IPP support to integral function
12 years ago
Heinz Hofbauer
a26c4fa2a2
Bugfix for an overlapping size of image and template for matchTemplate.
...
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.
12 years ago
Sergei Nosov
29955620e0
multiruns added to avoid the 'unreliable results' error
12 years ago
abidrahmank
a1ea1a7ec5
boxpoints documentation
12 years ago
abidrahmank
37f4e400e4
Added cv2.boxPoints() functionality to Python bindings (Feature #2023 )
...
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)
12 years ago
Sergei Nosov
c90abb6a03
add multiruns to fix "unreliable results" error
12 years ago
berak
765a2c6045
Moments.nu** fields initialized in completeMomentState( Moments* moments )
12 years ago
berak
610e29fa31
restored utility.hpp
12 years ago
berak
50e27ffc37
added initialization of Moments.nu** params in completeMomentState( Moments* moments )
12 years ago
IanVS
41fc41829c
Updated documentation to new "COLOR_" format for color conversion enums.
12 years ago
Roman Donchenko
f90fd5b0da
Split CLAHE into its own file, because it's faster that way.
...
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. ;=]
12 years ago
Roman Donchenko
29b13ec1de
Replaced most of the usages of parallel_for with that of parallel_for_.
...
This should allow many algorithms to take advantage of more parallelization
technologies.
12 years ago
abidrahmank
ca09ba6852
Bug #2960 : docs about CV_BGR2GRAY
12 years ago
abidrahmank
98960bf201
A new python sample on grabcut
12 years ago
ericgreveson
e7995b4d5d
Take account of multi-channel matrices when comparing histograms
...
Ensure that all channels are considered when comparing multi-channel histograms
12 years ago
Andrey Kamaev
2665c39a0d
Fix build warnings from gcc 4.8
12 years ago
ericgreveson
19794e6857
Fix for spurious assert in cv::compareHist
...
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.
12 years ago
Roman Donchenko
2dc8642508
Changed convexHull's documentation to essentially invert the meaning of ``clockwise``.
...
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.
12 years ago
tim36272
5ef3ef9c4a
Clarified floodfill documentation
...
Clarified what value floodfill sets pixels in the mask to when FOODFILL_MASK_ONLY is set.
12 years ago
Andrey Kamaev
8f32902ce6
Minimize usages of legacy C API inside the library
12 years ago
Andrey Kamaev
96b008cd29
Eliminate the need of ::testsing::ValuesIn() for CV_ENUM
...
Also cv::, cv::gpu:: and cv::ocl:: namespace prefixes can be safely omitted
inside CV_ENUM and CV_FLAGS
12 years ago
Andrey Kamaev
8b294c6c90
Remove documentation for old python wrapper
12 years ago
Andrey Kamaev
e5a33723fc
Move C API of opencv_calib3d to separate file
12 years ago
Andrey Kamaev
4846dcdfeb
Move borderInterpolate and copyMakeBorder documentation
12 years ago
Andrey Kamaev
c98c246fc2
Move border type constants and Moments class to core module
12 years ago
Andrey Kamaev
befd696720
Update documentation
12 years ago
Andrey Kamaev
0738ea7d0f
Make highgui.hpp independent from C API
12 years ago
Andrey Kamaev
288a0634c2
Make imgproc.hpp independent from C API
12 years ago
Alexander Smorkalov
a914088f29
Build warning fixes.
12 years ago
Andrey Kamaev
517062039e
Make core/internal.hpp a private header
12 years ago
Andrey Kamaev
d62bc8cfbf
Remove more old definitions from internal.hpp
12 years ago
Andrey Kamaev
3890a74565
Drop outdated definitions from internal.hpp
...
This also fixes few clang build errors
12 years ago
Andrey Kamaev
605382562d
Fix stack corruption in cvConvexHull2 and heap corruption in OutputArray::create
12 years ago