Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
ecbc652e
Commit
ecbc652e
authored
May 06, 2015
by
Alexandre Benoit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
trying to fix python wrapper warning on win64
parent
bce2fca9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
retina.hpp
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
+1
-1
retina.cpp
modules/bioinspired/src/retina.cpp
+1
-1
No files found.
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
View file @
ecbc652e
...
...
@@ -398,7 +398,7 @@ public:
@param colorSaturationValue the saturation factor : a simple factor applied on the chrominance
buffers
*/
CV_WRAP
virtual
void
setColorSaturation
(
const
bool
saturateColors
=
true
,
const
float
colorSaturationValue
=
4.0
)
=
0
;
CV_WRAP
virtual
void
setColorSaturation
(
const
bool
saturateColors
=
true
,
const
float
colorSaturationValue
=
4.0
f
)
=
0
;
/** @brief Clears all retina buffers
...
...
modules/bioinspired/src/retina.cpp
View file @
ecbc652e
...
...
@@ -241,7 +241,7 @@ public:
* @param saturateColors: boolean that activates color saturation (if true) or desactivate (if false)
* @param colorSaturationValue: the saturation factor
*/
void
setColorSaturation
(
const
bool
saturateColors
=
true
,
const
float
colorSaturationValue
=
4.0
);
void
setColorSaturation
(
const
bool
saturateColors
=
true
,
const
float
colorSaturationValue
=
4.0
f
);
/**
* clear all retina buffers (equivalent to opening the eyes after a long period of eye close ;o)
...
...
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