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
185836bc
Commit
185836bc
authored
Oct 02, 2014
by
Maksim Shabunin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java wrappers for bioinspired module
parent
99a5f4cf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
26 deletions
+26
-26
retina.hpp
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
+4
-4
retinafasttonemapping.hpp
...red/include/opencv2/bioinspired/retinafasttonemapping.hpp
+4
-4
transientareassegmentationmodule.hpp
.../opencv2/bioinspired/transientareassegmentationmodule.hpp
+18
-18
No files found.
modules/bioinspired/include/opencv2/bioinspired/retina.hpp
View file @
185836bc
...
...
@@ -301,12 +301,12 @@ public:
*/
CV_WRAP
virtual
void
activateContoursProcessing
(
const
bool
activate
)
=
0
;
};
CV_EXPORTS
Ptr
<
Retina
>
createRetina
(
Size
inputSize
);
CV_EXPORTS
Ptr
<
Retina
>
createRetina
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
CV_EXPORTS
_W
Ptr
<
Retina
>
createRetina
(
Size
inputSize
);
CV_EXPORTS
_W
Ptr
<
Retina
>
createRetina
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
#ifdef HAVE_OPENCV_OCL
CV_EXPORTS
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
);
CV_EXPORTS
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
);
Ptr
<
Retina
>
createRetina_OCL
(
Size
inputSize
,
const
bool
colorMode
,
int
colorSamplingMethod
=
RETINA_COLOR_BAYER
,
const
bool
useRetinaLogSampling
=
false
,
const
double
reductionFactor
=
1.0
,
const
double
samplingStrenght
=
10.0
);
#endif
}
}
...
...
modules/bioinspired/include/opencv2/bioinspired/retinafasttonemapping.hpp
View file @
185836bc
...
...
@@ -93,7 +93,7 @@ namespace bioinspired{
* regarding spatio-temporal filter and the bigger retina model :
* Vision: Images, Signals and Neural Networks: Models of Neural Processing in Visual Perception (Progress in Neural Processing),By: Jeanny Herault, ISBN: 9814273686. WAPI (Tower ID): 113266891.
*/
class
CV_EXPORTS
RetinaFastToneMapping
:
public
Algorithm
class
CV_EXPORTS
_W
RetinaFastToneMapping
:
public
Algorithm
{
public
:
...
...
@@ -103,7 +103,7 @@ public:
@param inputImage the input image to process RGB or gray levels
@param outputToneMappedImage the output tone mapped image
*/
virtual
void
applyFastToneMapping
(
InputArray
inputImage
,
OutputArray
outputToneMappedImage
)
=
0
;
CV_WRAP
virtual
void
applyFastToneMapping
(
InputArray
inputImage
,
OutputArray
outputToneMappedImage
)
=
0
;
/**
* setup method that updates tone mapping behaviors by adjusing the local luminance computation area
...
...
@@ -111,10 +111,10 @@ public:
* @param ganglioncellsNeighborhoodRadius the second stage local adaptation area
* @param meanLuminanceModulatorK the factor applied to modulate the meanLuminance information (default is 1, see reference paper)
*/
virtual
void
setup
(
const
float
photoreceptorsNeighborhoodRadius
=
3.
f
,
const
float
ganglioncellsNeighborhoodRadius
=
1.
f
,
const
float
meanLuminanceModulatorK
=
1.
f
)
=
0
;
CV_WRAP
virtual
void
setup
(
const
float
photoreceptorsNeighborhoodRadius
=
3.
f
,
const
float
ganglioncellsNeighborhoodRadius
=
1.
f
,
const
float
meanLuminanceModulatorK
=
1.
f
)
=
0
;
};
CV_EXPORTS
Ptr
<
RetinaFastToneMapping
>
createRetinaFastToneMapping
(
Size
inputSize
);
CV_EXPORTS
_W
Ptr
<
RetinaFastToneMapping
>
createRetinaFastToneMapping
(
Size
inputSize
);
}
}
...
...
modules/bioinspired/include/opencv2/bioinspired/transientareassegmentationmodule.hpp
View file @
185836bc
...
...
@@ -83,12 +83,12 @@ namespace cv
namespace
bioinspired
{
class
CV_EXPORTS
TransientAreasSegmentationModule
:
public
Algorithm
class
CV_EXPORTS
_W
TransientAreasSegmentationModule
:
public
Algorithm
{
public
:
// parameters structure
struct
SegmentationParameters
{
struct
CV_EXPORTS_W
SegmentationParameters
{
SegmentationParameters
()
:
thresholdON
(
100
),
thresholdOFF
(
100
),
...
...
@@ -101,16 +101,16 @@ public:
// context neighborhood energy filtering parameters : the aim is to get information about the energy on a wide neighborhood area to filtered out local effects
contextEnergy_temporalConstant
(
1
),
contextEnergy_spatialConstant
(
75
){};
// default setup
float
thresholdON
,
thresholdOFF
;
float
localEnergy_temporalConstant
,
localEnergy_spatialConstant
;
float
neighborhoodEnergy_temporalConstant
,
neighborhoodEnergy_spatialConstant
;
float
contextEnergy_temporalConstant
,
contextEnergy_spatialConstant
;
CV_PROP_RW
float
thresholdON
,
thresholdOFF
;
CV_PROP_RW
float
localEnergy_temporalConstant
,
localEnergy_spatialConstant
;
CV_PROP_RW
float
neighborhoodEnergy_temporalConstant
,
neighborhoodEnergy_spatialConstant
;
CV_PROP_RW
float
contextEnergy_temporalConstant
,
contextEnergy_spatialConstant
;
};
/**
* @return the sze of the manage input and output images
*/
virtual
Size
getSize
()
=
0
;
CV_WRAP
virtual
Size
getSize
()
=
0
;
/**
* try to open an XML segmentation parameters file to adjust current segmentation instance setup
...
...
@@ -119,7 +119,7 @@ public:
* @param retinaParameterFile : the parameters filename
* @param applyDefaultSetupOnFailure : set to true if an error must be thrown on error
*/
virtual
void
setup
(
String
segmentationParameterFile
=
""
,
const
bool
applyDefaultSetupOnFailure
=
true
)
=
0
;
CV_WRAP
virtual
void
setup
(
String
segmentationParameterFile
=
""
,
const
bool
applyDefaultSetupOnFailure
=
true
)
=
0
;
/**
* try to open an XML segmentation parameters file to adjust current segmentation instance setup
...
...
@@ -128,7 +128,7 @@ public:
* @param fs : the open Filestorage which contains segmentation parameters
* @param applyDefaultSetupOnFailure : set to true if an error must be thrown on error
*/
virtual
void
setup
(
cv
::
FileStorage
&
fs
,
const
bool
applyDefaultSetupOnFailure
=
true
)
=
0
;
CV_WRAP
virtual
void
setup
(
cv
::
FileStorage
&
fs
,
const
bool
applyDefaultSetupOnFailure
=
true
)
=
0
;
/**
* try to open an XML segmentation parameters file to adjust current segmentation instance setup
...
...
@@ -137,55 +137,55 @@ public:
* @param newParameters : a parameters structures updated with the new target configuration
* @param applyDefaultSetupOnFailure : set to true if an error must be thrown on error
*/
virtual
void
setup
(
SegmentationParameters
newParameters
)
=
0
;
CV_WRAP
virtual
void
setup
(
SegmentationParameters
newParameters
)
=
0
;
/**
* @return the current parameters setup
*/
virtual
SegmentationParameters
getParameters
()
=
0
;
CV_WRAP
virtual
SegmentationParameters
getParameters
()
=
0
;
/**
* parameters setup display method
* @return a string which contains formatted parameters information
*/
virtual
const
String
printSetup
()
=
0
;
CV_WRAP
virtual
const
String
printSetup
()
=
0
;
/**
* write xml/yml formated parameters information
* @rparam fs : the filename of the xml file that will be open and writen with formatted parameters information
*/
virtual
void
write
(
String
fs
)
const
=
0
;
CV_WRAP
virtual
void
write
(
String
fs
)
const
=
0
;
/**
* write xml/yml formated parameters information
* @param fs : a cv::Filestorage object ready to be filled
*/
virtual
void
write
(
cv
::
FileStorage
&
fs
)
const
=
0
;
CV_WRAP
virtual
void
write
(
cv
::
FileStorage
&
fs
)
const
=
0
;
/**
* main processing method, get result using methods getSegmentationPicture()
* @param inputToSegment : the image to process, it must match the instance buffer size !
* @param channelIndex : the channel to process in case of multichannel images
*/
virtual
void
run
(
InputArray
inputToSegment
,
const
int
channelIndex
=
0
)
=
0
;
CV_WRAP
virtual
void
run
(
InputArray
inputToSegment
,
const
int
channelIndex
=
0
)
=
0
;
/**
* access function
* @return the last segmentation result: a boolean picture which is resampled between 0 and 255 for a display purpose
*/
virtual
void
getSegmentationPicture
(
OutputArray
transientAreas
)
=
0
;
CV_WRAP
virtual
void
getSegmentationPicture
(
OutputArray
transientAreas
)
=
0
;
/**
* cleans all the buffers of the instance
*/
virtual
void
clearAllBuffers
()
=
0
;
CV_WRAP
virtual
void
clearAllBuffers
()
=
0
;
};
/**
* allocator
* @param Size : size of the images input to segment (output will be the same size)
*/
CV_EXPORTS
Ptr
<
TransientAreasSegmentationModule
>
createTransientAreasSegmentationModule
(
Size
inputSize
);
CV_EXPORTS
_W
Ptr
<
TransientAreasSegmentationModule
>
createTransientAreasSegmentationModule
(
Size
inputSize
);
}}
// namespaces end : cv and bioinspired
...
...
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