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
c37e0639
Commit
c37e0639
authored
Jun 18, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed serveral CV_EXPORTS_AS() to make Python function names in cv2 the same as in C++.
parent
350dfc1e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
24 deletions
+25
-24
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+25
-24
No files found.
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
c37e0639
...
...
@@ -385,7 +385,7 @@ CV_EXPORTS_W void copyMakeBorder( InputArray src, OutputArray dst,
//! smooths the image using median filter.
CV_EXPORTS_W
void
medianBlur
(
InputArray
src
,
OutputArray
dst
,
int
ksize
);
//! smooths the image using Gaussian filter.
CV_EXPORTS_
AS
(
gaussianBlur
)
void
GaussianBlur
(
InputArray
src
,
CV_EXPORTS_
W
void
GaussianBlur
(
InputArray
src
,
OutputArray
dst
,
Size
ksize
,
double
sigma1
,
double
sigma2
=
0
,
int
borderType
=
BORDER_DEFAULT
);
...
...
@@ -415,25 +415,25 @@ CV_EXPORTS_W void sepFilter2D( InputArray src, OutputArray dst, int ddepth,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
//! applies generalized Sobel operator to the image
CV_EXPORTS_
AS
(
sobel
)
void
Sobel
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
dx
,
int
dy
,
int
ksize
=
3
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
CV_EXPORTS_
W
void
Sobel
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
dx
,
int
dy
,
int
ksize
=
3
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
//! applies the vertical or horizontal Scharr operator to the image
CV_EXPORTS_
AS
(
scharr
)
void
Scharr
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
dx
,
int
dy
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
CV_EXPORTS_
W
void
Scharr
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
dx
,
int
dy
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
//! applies Laplacian operator to the image
CV_EXPORTS_
AS
(
laplacian
)
void
Laplacian
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
ksize
=
1
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
CV_EXPORTS_
W
void
Laplacian
(
InputArray
src
,
OutputArray
dst
,
int
ddepth
,
int
ksize
=
1
,
double
scale
=
1
,
double
delta
=
0
,
int
borderType
=
BORDER_DEFAULT
);
//! applies Canny edge detector and produces the edge map.
CV_EXPORTS_
AS
(
canny
)
void
Canny
(
InputArray
image
,
OutputArray
edges
,
double
threshold1
,
double
threshold2
,
int
apertureSize
=
3
,
bool
L2gradient
=
false
);
CV_EXPORTS_
W
void
Canny
(
InputArray
image
,
OutputArray
edges
,
double
threshold1
,
double
threshold2
,
int
apertureSize
=
3
,
bool
L2gradient
=
false
);
//! computes minimum eigen value of 2x2 derivative covariation matrix at each pixel - the cornerness criteria
CV_EXPORTS_W
void
cornerMinEigenVal
(
InputArray
src
,
OutputArray
dst
,
...
...
@@ -466,20 +466,20 @@ CV_EXPORTS_W void goodFeaturesToTrack( InputArray image, OutputArray corners,
bool
useHarrisDetector
=
false
,
double
k
=
0.04
);
//! finds lines in the black-n-white image using the standard or pyramid Hough transform
CV_EXPORTS_
AS
(
houghLines
)
void
HoughLines
(
InputArray
image
,
OutputArray
lines
,
double
rho
,
double
theta
,
int
threshold
,
double
srn
=
0
,
double
stn
=
0
);
CV_EXPORTS_
W
void
HoughLines
(
InputArray
image
,
OutputArray
lines
,
double
rho
,
double
theta
,
int
threshold
,
double
srn
=
0
,
double
stn
=
0
);
//! finds line segments in the black-n-white image using probabalistic Hough transform
CV_EXPORTS_
AS
(
houghLinesP
)
void
HoughLinesP
(
InputArray
image
,
OutputArray
lines
,
double
rho
,
double
theta
,
int
threshold
,
double
minLineLength
=
0
,
double
maxLineGap
=
0
);
CV_EXPORTS_
W
void
HoughLinesP
(
InputArray
image
,
OutputArray
lines
,
double
rho
,
double
theta
,
int
threshold
,
double
minLineLength
=
0
,
double
maxLineGap
=
0
);
//! finds circles in the grayscale image using 2+1 gradient Hough transform
CV_EXPORTS_
AS
(
houghCircles
)
void
HoughCircles
(
InputArray
image
,
OutputArray
circles
,
int
method
,
double
dp
,
double
minDist
,
double
param1
=
100
,
double
param2
=
100
,
int
minRadius
=
0
,
int
maxRadius
=
0
);
CV_EXPORTS_
W
void
HoughCircles
(
InputArray
image
,
OutputArray
circles
,
int
method
,
double
dp
,
double
minDist
,
double
param1
=
100
,
double
param2
=
100
,
int
minRadius
=
0
,
int
maxRadius
=
0
);
//! erodes the image (applies the local minimum operator)
CV_EXPORTS_W
void
erode
(
InputArray
src
,
OutputArray
dst
,
InputArray
kernel
,
...
...
@@ -564,6 +564,7 @@ CV_EXPORTS_W void getRectSubPix( InputArray image, Size patchSize,
//! computes the integral image
CV_EXPORTS_W
void
integral
(
InputArray
src
,
OutputArray
sum
,
int
sdepth
=-
1
);
//! computes the integral image and integral for the squared image
CV_EXPORTS_AS
(
integral2
)
void
integral
(
InputArray
src
,
OutputArray
sum
,
OutputArray
sqsum
,
int
sdepth
=-
1
);
...
...
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