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
bb329719
Commit
bb329719
authored
Oct 30, 2011
by
Alexandre Benoit
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
short change on default retina values setup for warning avoidance
parent
57159998
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
retina.hpp
modules/contrib/include/opencv2/contrib/retina.hpp
+15
-15
No files found.
modules/contrib/include/opencv2/contrib/retina.hpp
View file @
bb329719
...
...
@@ -114,31 +114,31 @@ class CV_EXPORTS Retina {
public
:
// parameters structure for better clarity
// parameters structure for better clarity
, check explenations on the comments of methods : setupOPLandIPLParvoChannel and setupIPLMagnoChannel
struct
RetinaParameters
{
struct
OPLandIplParvoParameters
{
// Outer Plexiform Layer (OPL) and Inner Plexiform Layer Parvocellular (IplParvo) parameters
OPLandIplParvoParameters
()
:
colorMode
(
true
),
normaliseOutput
(
true
),
photoreceptorsLocalAdaptationSensitivity
(
0.7
),
photoreceptorsTemporalConstant
(
0.5
),
photoreceptorsSpatialConstant
(
0.53
),
horizontalCellsGain
(
0
),
hcellsTemporalConstant
(
1
),
hcellsSpatialConstant
(
7
),
ganglionCellsSensitivity
(
0.7
){};
// default setup
photoreceptorsLocalAdaptationSensitivity
(
0.7
f
),
photoreceptorsTemporalConstant
(
0.5
f
),
photoreceptorsSpatialConstant
(
0.53
f
),
horizontalCellsGain
(
0
.0
f
),
hcellsTemporalConstant
(
1
.
f
),
hcellsSpatialConstant
(
7
.
f
),
ganglionCellsSensitivity
(
0.7
f
){};
// default setup
bool
colorMode
,
normaliseOutput
;
float
photoreceptorsLocalAdaptationSensitivity
,
photoreceptorsTemporalConstant
,
photoreceptorsSpatialConstant
,
horizontalCellsGain
,
hcellsTemporalConstant
,
hcellsSpatialConstant
,
ganglionCellsSensitivity
;
};
struct
IplMagnoParameters
{
// Inner Plexiform Layer Magnocellular channel (IplMagno)
IplMagnoParameters
()
:
normaliseOutput
(
true
),
parasolCells_beta
(
0
),
parasolCells_tau
(
0
),
parasolCells_k
(
7
),
amacrinCellsTemporalCutFrequency
(
1.2
),
V0CompressionParameter
(
0.95
),
localAdaptintegration_tau
(
0
),
localAdaptintegration_k
(
7
){};
// default setup
parasolCells_beta
(
0
.
f
),
parasolCells_tau
(
0
.
f
),
parasolCells_k
(
7
.
f
),
amacrinCellsTemporalCutFrequency
(
1.2
f
),
V0CompressionParameter
(
0.95
f
),
localAdaptintegration_tau
(
0
.
f
),
localAdaptintegration_k
(
7
.
f
){};
// default setup
bool
normaliseOutput
;
float
parasolCells_beta
,
parasolCells_tau
,
parasolCells_k
,
amacrinCellsTemporalCutFrequency
,
V0CompressionParameter
,
localAdaptintegration_tau
,
localAdaptintegration_k
;
};
...
...
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