OpenCV  3.3.0
Open Source Computer Vision
Public Member Functions | Related Functions | List of all members
cv::bioinspired::TransientAreasSegmentationModule Class Referenceabstract

class which provides a transient/moving areas segmentation module More...

#include "transientareassegmentationmodule.hpp"

Inheritance diagram for cv::bioinspired::TransientAreasSegmentationModule:
cv::Algorithm

Public Member Functions

virtual void clearAllBuffers ()=0
 cleans all the buffers of the instance More...
 
virtual SegmentationParameters getParameters ()=0
 return the current parameters setup More...
 
virtual void getSegmentationPicture (OutputArray transientAreas)=0
 access function More...
 
virtual Size getSize ()=0
 return the sze of the manage input and output images More...
 
virtual const String printSetup ()=0
 parameters setup display method More...
 
virtual void run (InputArray inputToSegment, const int channelIndex=0)=0
 main processing method, get result using methods getSegmentationPicture() More...
 
virtual void setup (String segmentationParameterFile="", const bool applyDefaultSetupOnFailure=true)=0
 try to open an XML segmentation parameters file to adjust current segmentation instance setup More...
 
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 More...
 
virtual void setup (SegmentationParameters newParameters)=0
 try to open an XML segmentation parameters file to adjust current segmentation instance setup More...
 
virtual void write (String fs) const =0
 write xml/yml formated parameters information More...
 
virtual void write (cv::FileStorage &fs) const =0
 write xml/yml formated parameters information More...
 
- Public Member Functions inherited from cv::Algorithm
 Algorithm ()
 
virtual ~Algorithm ()
 
virtual void clear ()
 Clears the algorithm state. More...
 
virtual bool empty () const
 Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read. More...
 
virtual String getDefaultName () const
 
virtual void read (const FileNode &fn)
 Reads algorithm parameters from a file storage. More...
 
virtual void save (const String &filename) const
 

Related Functions

(Note that these are not member functions.)

Ptr< TransientAreasSegmentationModulecreateTransientAreasSegmentationModule (Size inputSize)
 allocator More...
 

Additional Inherited Members

- Static Public Member Functions inherited from cv::Algorithm
template<typename _Tp >
static Ptr< _Tp > load (const String &filename, const String &objname=String())
 Loads algorithm from the file. More...
 
template<typename _Tp >
static Ptr< _Tp > loadFromString (const String &strModel, const String &objname=String())
 Loads algorithm from a String. More...
 
template<typename _Tp >
static Ptr< _Tp > read (const FileNode &fn)
 Reads algorithm from the file node. More...
 
- Protected Member Functions inherited from cv::Algorithm
void writeFormat (FileStorage &fs) const
 

Detailed Description

class which provides a transient/moving areas segmentation module

perform a locally adapted segmentation by using the retina magno input data Based on Alexandre BENOIT thesis: "Le système visuel humain au secours de la vision par ordinateur"

3 spatio temporal filters are used:

Member Function Documentation

§ clearAllBuffers()

virtual void cv::bioinspired::TransientAreasSegmentationModule::clearAllBuffers ( )
pure virtual

cleans all the buffers of the instance

§ getParameters()

virtual SegmentationParameters cv::bioinspired::TransientAreasSegmentationModule::getParameters ( )
pure virtual

return the current parameters setup

§ getSegmentationPicture()

virtual void cv::bioinspired::TransientAreasSegmentationModule::getSegmentationPicture ( OutputArray  transientAreas)
pure virtual

access function

Returns
the last segmentation result: a boolean picture which is resampled between 0 and 255 for a display purpose

§ getSize()

virtual Size cv::bioinspired::TransientAreasSegmentationModule::getSize ( )
pure virtual

return the sze of the manage input and output images

§ printSetup()

virtual const String cv::bioinspired::TransientAreasSegmentationModule::printSetup ( )
pure virtual

parameters setup display method

Returns
a string which contains formatted parameters information

§ run()

virtual void cv::bioinspired::TransientAreasSegmentationModule::run ( InputArray  inputToSegment,
const int  channelIndex = 0 
)
pure virtual

main processing method, get result using methods getSegmentationPicture()

Parameters
inputToSegment: the image to process, it must match the instance buffer size !
channelIndex: the channel to process in case of multichannel images

§ setup() [1/3]

virtual void cv::bioinspired::TransientAreasSegmentationModule::setup ( String  segmentationParameterFile = "",
const bool  applyDefaultSetupOnFailure = true 
)
pure virtual

try to open an XML segmentation parameters file to adjust current segmentation instance setup

  • if the xml file does not exist, then default setup is applied
  • warning, Exceptions are thrown if read XML file is not valid
    Parameters
    segmentationParameterFile: the parameters filename
    applyDefaultSetupOnFailure: set to true if an error must be thrown on error

§ setup() [2/3]

virtual void cv::bioinspired::TransientAreasSegmentationModule::setup ( cv::FileStorage fs,
const bool  applyDefaultSetupOnFailure = true 
)
pure virtual

try to open an XML segmentation parameters file to adjust current segmentation instance setup

  • if the xml file does not exist, then default setup is applied
  • warning, Exceptions are thrown if read XML file is not valid
    Parameters
    fs: the open Filestorage which contains segmentation parameters
    applyDefaultSetupOnFailure: set to true if an error must be thrown on error

§ setup() [3/3]

virtual void cv::bioinspired::TransientAreasSegmentationModule::setup ( SegmentationParameters  newParameters)
pure virtual

try to open an XML segmentation parameters file to adjust current segmentation instance setup

  • if the xml file does not exist, then default setup is applied
  • warning, Exceptions are thrown if read XML file is not valid
    Parameters
    newParameters: a parameters structures updated with the new target configuration

§ write() [1/2]

virtual void cv::bioinspired::TransientAreasSegmentationModule::write ( String  fs) const
pure virtual

write xml/yml formated parameters information

Parameters
fs: the filename of the xml file that will be open and writen with formatted parameters information

§ write() [2/2]

virtual void cv::bioinspired::TransientAreasSegmentationModule::write ( cv::FileStorage fs) const
pure virtual

write xml/yml formated parameters information

Parameters
fs: a cv::Filestorage object ready to be filled

Reimplemented from cv::Algorithm.


The documentation for this class was generated from the following file: