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
6ef1983f
Commit
6ef1983f
authored
Nov 12, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/3.4' into merge-3.4
parents
a113dc61
567bcc95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
retina.markdown
modules/bioinspired/doc/retina.markdown
+4
-4
No files found.
modules/bioinspired/doc/retina.markdown
View file @
6ef1983f
...
...
@@ -155,7 +155,7 @@ The proposed class allows the [Gipsa](http://www.gipsa-lab.inpg.fr) (preliminary
[
Listic
](
http://www.listic.univ-savoie.fr
)
labs retina model to be used.
It can be applied on still images, images sequences and video sequences.
Here is an overview of the Retina interface, allocate one instance with the
*
createRetina
*
Here is an overview of the Retina interface, allocate one instance with the
*
Retina::create()
*
functions (C++, Java, Python) :
@code{.cpp}
...
...
@@ -206,8 +206,8 @@ functions (C++, Java, Python) :
};
// Allocators
cv::Ptr<Retina>
createRetina
(Size inputSize);
cv::Ptr<Retina>
createRetina
(Size inputSize, const bool colorMode, RETINA_COLORSAMPLINGMETHOD colorSamplingMethod=RETINA_COLOR_BAYER, const bool useRetinaLogSampling=false, const double reductionFactor=1.0, const double samplingStrenght=10.0);
cv::Ptr<Retina>
Retina::create
(Size inputSize);
cv::Ptr<Retina>
Retina::create
(Size inputSize, const bool colorMode, RETINA_COLORSAMPLINGMETHOD colorSamplingMethod=RETINA_COLOR_BAYER, const bool useRetinaLogSampling=false, const double reductionFactor=1.0, const double samplingStrenght=10.0);
}} // cv and bioinspired namespaces end
@endcode
...
...
@@ -432,7 +432,7 @@ videoHandler = cv.VideoCapture(0)
succeed, inputImage=videoHandler.read()
#allocate a retina instance with input size equal to the one of the loaded image
retina = cv.bioinspired
.createRetina
((inputImage.shape
[
1
]
, inputImage.shape
[
0
]
))
retina = cv.bioinspired
_Retina.create
((inputImage.shape
[
1
]
, inputImage.shape
[
0
]
))
#retina parameters management methods use sample
#-> save current (here default) retina parameters to a xml file (you may use it only one time to get the file and modify it)
...
...
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