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
96c1df14
Commit
96c1df14
authored
Aug 13, 2013
by
abidrahmank
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CLAHE Python bindings
parent
843094a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
+9
-8
imgproc.hpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
+8
-8
cv2.cpp
modules/python/src2/cv2.cpp
+1
-0
No files found.
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
View file @
96c1df14
...
...
@@ -759,20 +759,20 @@ CV_EXPORTS double compareHist( const SparseMat& H1, const SparseMat& H2, int met
//! normalizes the grayscale image brightness and contrast by normalizing its histogram
CV_EXPORTS_W
void
equalizeHist
(
InputArray
src
,
OutputArray
dst
);
class
CV_EXPORTS
CLAHE
:
public
Algorithm
class
CV_EXPORTS
_W
CLAHE
:
public
Algorithm
{
public
:
virtual
void
apply
(
InputArray
src
,
OutputArray
dst
)
=
0
;
CV_WRAP
virtual
void
apply
(
InputArray
src
,
OutputArray
dst
)
=
0
;
virtual
void
setClipLimit
(
double
clipLimit
)
=
0
;
virtual
double
getClipLimit
()
const
=
0
;
CV_WRAP
virtual
void
setClipLimit
(
double
clipLimit
)
=
0
;
CV_WRAP
virtual
double
getClipLimit
()
const
=
0
;
virtual
void
setTilesGridSize
(
Size
tileGridSize
)
=
0
;
virtual
Size
getTilesGridSize
()
const
=
0
;
CV_WRAP
virtual
void
setTilesGridSize
(
Size
tileGridSize
)
=
0
;
CV_WRAP
virtual
Size
getTilesGridSize
()
const
=
0
;
virtual
void
collectGarbage
()
=
0
;
CV_WRAP
virtual
void
collectGarbage
()
=
0
;
};
CV_EXPORTS
Ptr
<
CLAHE
>
createCLAHE
(
double
clipLimit
=
40.0
,
Size
tileGridSize
=
Size
(
8
,
8
));
CV_EXPORTS
_W
Ptr
<
CLAHE
>
createCLAHE
(
double
clipLimit
=
40.0
,
Size
tileGridSize
=
Size
(
8
,
8
));
CV_EXPORTS
float
EMD
(
InputArray
signature1
,
InputArray
signature2
,
int
distType
,
InputArray
cost
=
noArray
(),
...
...
modules/python/src2/cv2.cpp
View file @
96c1df14
...
...
@@ -123,6 +123,7 @@ typedef Ptr<FeatureDetector> Ptr_FeatureDetector;
typedef
Ptr
<
DescriptorExtractor
>
Ptr_DescriptorExtractor
;
typedef
Ptr
<
Feature2D
>
Ptr_Feature2D
;
typedef
Ptr
<
DescriptorMatcher
>
Ptr_DescriptorMatcher
;
typedef
Ptr
<
CLAHE
>
Ptr_CLAHE
;
typedef
SimpleBlobDetector
::
Params
SimpleBlobDetector_Params
;
...
...
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