Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
fcc28fec
Commit
fcc28fec
authored
Aug 23, 2016
by
Suleyman TURKMEN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make Up
parent
b3b434e2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
calib3d.hpp
modules/calib3d/include/opencv2/calib3d.hpp
+1
-1
core.hpp
modules/core/include/opencv2/core.hpp
+0
-0
imgproc.hpp
modules/imgproc/include/opencv2/imgproc.hpp
+9
-9
No files found.
modules/calib3d/include/opencv2/calib3d.hpp
View file @
fcc28fec
...
...
@@ -320,7 +320,7 @@ mask values are ignored.
@param maxIters The maximum number of RANSAC iterations, 2000 is the maximum it can be.
@param confidence Confidence level, between 0 and 1.
The function
s find and return
the perspective transformation \f$H\f$ between the source and the
The function
finds and returns
the perspective transformation \f$H\f$ between the source and the
destination planes:
\f[s_i \vecthree{x'_i}{y'_i}{1} \sim H \vecthree{x_i}{y_i}{1}\f]
...
...
modules/core/include/opencv2/core.hpp
View file @
fcc28fec
This diff is collapsed.
Click to expand it.
modules/imgproc/include/opencv2/imgproc.hpp
View file @
fcc28fec
...
...
@@ -2507,7 +2507,7 @@ CV_EXPORTS_AS(integral2) void integral( InputArray src, OutputArray sum,
/** @brief Calculates the integral of an image.
The function
s calculate
one or more integral images for the source image as follows:
The function
calculates
one or more integral images for the source image as follows:
\f[\texttt{sum} (X,Y) = \sum _{x<X,y<Y} \texttt{image} (x,y)\f]
...
...
@@ -3348,7 +3348,7 @@ An example on using the distance transform\
/** @brief Calculates the distance to the closest zero pixel for each pixel of the source image.
The function
s distanceTransform calculate
the approximate or precise distance from every binary
The function
cv::distanceTransform calculates
the approximate or precise distance from every binary
image pixel to the nearest zero pixel. For zero image pixels, the distance will obviously be zero.
When maskSize == DIST_MASK_PRECISE and distanceType == DIST_L2 , the function runs the
...
...
@@ -3432,7 +3432,7 @@ CV_EXPORTS int floodFill( InputOutputArray image,
/** @brief Fills a connected component with the given color.
The function
s floodFill fill
a connected component starting from the seed point with the specified
The function
cv::floodFill fills
a connected component starting from the seed point with the specified
color. The connectivity is determined by the color/brightness closeness of the neighbor pixels. The
pixel at \f$(x,y)\f$ is considered to belong to the repainted domain if:
...
...
@@ -3712,7 +3712,7 @@ CV_EXPORTS void findContours( InputOutputArray image, OutputArrayOfArrays contou
/** @brief Approximates a polygonal curve(s) with the specified precision.
The function
s approxPolyDP approximate
a curve or a polygon with another curve/polygon with less
The function
cv::approxPolyDP approximates
a curve or a polygon with another curve/polygon with less
vertices so that the distance between them is less or equal to the specified precision. It uses the
Douglas-Peucker algorithm <http://en.wikipedia.org/wiki/Ramer-Douglas-Peucker_algorithm>
...
...
@@ -3854,7 +3854,7 @@ An example using the convexHull functionality
/** @brief Finds the convex hull of a point set.
The function
s find
the convex hull of a 2D point set using the Sklansky's algorithm @cite Sklansky82
The function
cv::convexHull finds
the convex hull of a 2D point set using the Sklansky's algorithm @cite Sklansky82
that has *O(N logN)* complexity in the current implementation. See the OpenCV sample convexhull.cpp
that demonstrates the usage of different function variants.
...
...
@@ -4123,7 +4123,7 @@ CV_EXPORTS_W void circle(InputOutputArray img, Point center, int radius,
/** @brief Draws a simple or thick elliptic arc or fills an ellipse sector.
The function
s ellipse with less parameters draw
an ellipse outline, a filled ellipse, an elliptic
The function
cv::ellipse with less parameters draws
an ellipse outline, a filled ellipse, an elliptic
arc, or a filled ellipse sector. A piecewise-linear curve is used to approximate the elliptic arc
boundary. If you need more control of the ellipse rendering, you can retrieve the curve using
ellipse2Poly and then render it with polylines or fill it with fillPoly . If you use the first
...
...
@@ -4344,9 +4344,9 @@ CV_EXPORTS_W void drawContours( InputOutputArray image, InputArrayOfArrays conto
/** @brief Clips the line against the image rectangle.
The function
s clipLine calculate
a part of the line segment that is entirely within the specified
rectangle.
They return
false if the line segment is completely outside the rectangle. Otherwise,
they return
true .
The function
cv::clipLine calculates
a part of the line segment that is entirely within the specified
rectangle.
it returns
false if the line segment is completely outside the rectangle. Otherwise,
it returns
true .
@param imgSize Image size. The image rectangle is Rect(0, 0, imgSize.width, imgSize.height) .
@param pt1 First line point.
@param pt2 Second line point.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment