StevenPuttemans
f28496c628
Added sample links in documentation for python2, ocl and gpu
11 years ago
Nghia Ho
bc3dd2452f
Added test cpp
11 years ago
Nghia Ho
00f63fa8f7
Finished test code, added image to the doc
11 years ago
StevenPuttemans
0c5244103f
Added all *.cpp samples reference to the 2.4.6 documentation as discussed in feature #3169
...
- Used lunix style slashes - works on most systems
- Removed all trailing whitespaces
11 years ago
abidrahmank
9628bb0b44
morphologyex docs bug#2169
11 years ago
Shervin Emami
7dc147c1f2
Changed cornerHarris description to say it finds corners, not edges
11 years ago
abidrahmank
692d807fa0
gabor filter docs Bug#1894
11 years ago
abidrahmank
a1ea1a7ec5
boxpoints documentation
12 years ago
IanVS
41fc41829c
Updated documentation to new "COLOR_" format for color conversion enums.
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
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
8b294c6c90
Remove documentation for old python wrapper
12 years ago
Andrey Kamaev
4846dcdfeb
Move borderInterpolate and copyMakeBorder documentation
12 years ago
Andrey Kamaev
befd696720
Update documentation
12 years ago
Andrey Kamaev
e75df56317
Unified handling of InputOutputArrays in Python wrapper generator
...
This makes arguments of type InputOutputArray required in python unless they
have a default value in C++.
As result following python functions changes signatures in non-trivial way:
* calcOpticalFlowFarneback
* calcOpticalFlowPyrLK
* calibrateCamera
* findContours
* findTransformECC
* floodFill
* kmeans
* PCACompute
* stereoCalibrate
And the following functions become return their modified inputs as a return
value:
* accumulate
* accumulateProduct
* accumulateSquare
* accumulateWeighted
* circle
* completeSymm
* cornerSubPix
* drawChessboardCorners
* drawContours
* drawDataMatrixCodes
* ellipse
* fillConvexPoly
* fillPoly
* filterSpeckles
* grabCut
* insertChannel
* line
* patchNaNs
* polylines
* randn
* randShuffle
* randu
* rectangle
* setIdentity
* updateMotionHistory
* validateDisparity
* watershed
12 years ago
Fabrice Silva
eca114ae95
Fix definition of the covariance matrix of derivatives.
12 years ago
Amro
42a2cb0a38
add description of ddepth param of cv::boxFilter
...
bug #2709
12 years ago
Daniil Osokin
4c9c27b244
Fixed formula of YCrCb to RGB conversion (bug #2725 )
12 years ago
Jason Newton
4cb25e9584
update documentation to latest connected components interface
12 years ago
Vsevolod Glumov
3f417f1ec3
Fixes for issues #2570 , #2492 , #2559 , #2489 , #2592 .
12 years ago
Jason Newton
85880397c4
connectedcomponents: use opencv integral types, add to docs, fix up things for a python export
12 years ago
Andrey Kamaev
0e7ca71dcc
Normalize whitespace in documentation and text files
12 years ago
Andrey Kamaev
461b69f6ee
Eliminate discrepancies between signatures in documentation and OpenCV headers
...
All errors were found by doc/check_docs2.py
12 years ago
Andrey Kamaev
58f31819cc
Return drawContours back to imgproc
...
This partly reverts commit 6ca618277c
.
12 years ago
Vadim Pisarevsky
57d9699058
added the note about 1-pixel border in findContours (relates to ticket #2362 )
12 years ago
Andrey Kamaev
639bbec44a
svn repository web references are replaced with links to git
12 years ago
Vsevolod Glumov
fc307c87dc
Improved the public 'non-optimized' duplicates of 'Tegra-optimized' functions.
12 years ago
Andrey Kamaev
5100ca7508
svn repository web references are replaced with links to git
12 years ago
Andrey Kamaev
b1eba01afb
Fixed several mistakes in documentation
13 years ago
Marina Kolpakova
3def843652
merged the trunk r8719:8731 and 8807
13 years ago
Vadim Pisarevsky
87d1731714
added synonym CV_COMP_HELLIGNER for CV_COMP_BHATTACHARYAA to reflect the real formula used (bug report #2073 )
13 years ago
Vadim Pisarevsky
0c65ea976a
added the optional output maxima value to phaseCorrelate (patch #2071 by Robert Huitl)
13 years ago
Andrey Kamaev
f666bd221f
Merged the trunk r8595:8668 (except iOS and new gpu functionality)
13 years ago
Andrey Kamaev
ab20da0f53
Merged the trunk r8547:8574, r8587
13 years ago
Alexander Shishkov
e4d9d5294e
fixed #2047
13 years ago
Andrey Kamaev
40c779fcf5
phaseCorrelate documentation patch by Will Lucas #2017
13 years ago
Andrey Kamaev
ca0962c738
Megred fix for pyrhon API generator regression r8528
13 years ago
Andrey Kamaev
81a5988015
Merged the trunk r8467:8507 (inclusive) (big bunch of documentation fixes)
13 years ago
Andrey Kamaev
949c4edf41
Merged the trunk r8408:8457 (inclusive)
13 years ago
Andrey Kamaev
05de6302fd
Fixed documentation: corrected parameter names
13 years ago
Andrey Kamaev
6ca618277c
More fixes for documentation.
13 years ago
Andrey Kamaev
eb2f1f81ed
Fixed hundreds of documentation problems
13 years ago
Andrey Kamaev
0e9e0a01db
Added new perf tests for boxFilter
13 years ago
Vadim Pisarevsky
159cc29bb5
fixed undistortPoints description (ticket #1964 )
13 years ago
Andrey Kamaev
3a1f85d4e8
Remerged the 2.4.0 branch
13 years ago
Vadim Pisarevsky
d5a0088bbe
merged 2.4 into trunk
13 years ago
Vadim Pisarevsky
bffd77ed87
moved planar subdiv docs to legacy; added Input/OutputArray docs to core
13 years ago