JeVois  1.21
JeVois Smart Embedded Machine Vision Toolkit
Share this page:
Loading...
Searching...
No Matches
jevois::dnn::PreProcessorPython Class Reference

#include <jevois/DNN/PreProcessorPython.H>

Pre-Processor for neural network pipeline written in python.

This is the first step in a deep neural network processing Pipeline.

Definition at line 32 of file PreProcessorPython.H.

Inheritance diagram for jevois::dnn::PreProcessorPython:
Collaboration diagram for jevois::dnn::PreProcessorPython:

Public Member Functions

 PreProcessorPython (std::string const &instance)
 Constructor.
 
virtual ~PreProcessorPython ()
 Destructor.
 
void freeze (bool doit) override
 Freeze/unfreeze parameters that users should not change while running.
 
std::vector< cv::Mat > process (cv::Mat const &img, bool swaprb, std::vector< vsi_nn_tensor_attr_t > const &attrs, std::vector< cv::Rect > &crops) override
 Extract blobs from input image.
 
void report (jevois::StdModule *mod, jevois::RawImage *outimg=nullptr, jevois::OptGUIhelper *helper=nullptr, bool overlay=true, bool idle=false) override
 Report what happened in last process() to console/output video/GUI.
 
- Public Member Functions inherited from jevois::dnn::PreProcessor
 PreProcessor (std::string const &instance)
 Constructor.
 
virtual ~PreProcessor ()
 Destructor.
 
std::vector< cv::Mat > process (jevois::RawImage const &img, std::vector< vsi_nn_tensor_attr_t > const &attrs)
 Extract blobs from input image.
 
virtual void sendreport (jevois::StdModule *mod, jevois::RawImage *outimg=nullptr, jevois::OptGUIhelper *helper=nullptr, bool overlay=true, bool idle=false)
 Report what happened in last process() to console/output video/GUI.
 
cv::Size const & imagesize () const
 Access the last processed image size.
 
std::vector< cv::Mat > const & blobs () const
 Access the last computed blobs (or empty if process() has not yet been called)
 
cv::Size blobsize (size_t num) const
 Access the width and height of a given blob, accounting for NCHW or NHWC.
 
void b2i (float &x, float &y, size_t blobnum=0)
 Convert coordinates from blob back to original image.
 
void b2i (float &x, float &y, cv::Size const &bsiz, bool letterboxed)
 Convert coordinates from blob back to original image, given a known blob size.
 
cv::Rect getUnscaledCropRect (size_t blobnum=0)
 Get unscaled crop rectangle in image coordinates.
 
void getUnscaledCropRect (size_t blobnum, int &tlx, int &tly, int &brx, int &bry)
 Get unscaled crop rectangle in image coordinates.
 
void i2b (float &x, float &y, size_t blobnum=0)
 Convert coordinates from image to blob.
 
void i2b (float &x, float &y, cv::Size const &bsiz, bool letterboxed)
 Convert coordinates from image to blob.
 
std::shared_ptr< PreProcessorForPython > getPreProcForPy () const
 Get a pointer to our python-friendly interface.
 
- Public Member Functions inherited from jevois::Component
 Component (std::string const &instance)
 Constructor.
 
virtual ~Component ()
 Virtual destructor for safe inheritance.
 
template<class Comp , typename... Args>
std::shared_ptr< Comp > addSubComponent (std::string const &instance, Args &&...args)
 Pseudo-constructor: construct and add another component as a subcomponent of this one.
 
template<class Comp >
void removeSubComponent (std::shared_ptr< Comp > &component)
 Remove a sub-Component from this Component, by shared_ptr.
 
void removeSubComponent (std::string const &instance, bool warnIfNotFound=true)
 Remove a sub-Component from this Component, by instance name.
 
template<class Comp = jevois::Component>
std::shared_ptr< Comp > getSubComponent (std::string const &instance) const
 Get a sub-component by instance name.
 
bool isTopLevel () const
 Returns true if this component is top-level, i.e., its parent is jevois::Manager.
 
bool initialized () const
 Has this component been initialized yet?
 
std::string const & className () const
 The class name of this component.
 
std::string const & instanceName () const
 The instance name of this component.
 
template<typename T >
std::vector< std::string > setParamVal (std::string const &paramdescriptor, T const &val)
 Set a parameter value.
 
template<typename T >
void setParamValUnique (std::string const &paramdescriptor, T const &val)
 Set a parameter value, simple version assuming only one parameter match.
 
template<typename T >
std::vector< std::pair< std::string, T > > getParamVal (std::string const &paramdescriptor) const
 Get parameter(s) value(s) by descriptor.
 
template<typename T >
getParamValUnique (std::string const &paramdescriptor) const
 Get a parameter value, simple version assuming only one parameter match.
 
std::vector< std::string > setParamString (std::string const &paramdescriptor, std::string const &val)
 Set a parameter value, by string.
 
void setParamStringUnique (std::string const &paramdescriptor, std::string const &val)
 Set a parameter value by string, simple version assuming only one parameter match.
 
std::vector< std::pair< std::string, std::string > > getParamString (std::string const &paramdescriptor) const
 Get a parameter value, by string.
 
std::string getParamStringUnique (std::string const &paramdescriptor) const
 Get a parameter value by string, simple version assuming only one parameter match.
 
void freezeParam (std::string const &paramdescriptor, bool doit)
 Freeze/unfreeze a parameter, by name, see ParameterBase::freeze()
 
void freezeAllParams (bool doit)
 Freeze all parameters.
 
std::string descriptor () const
 Get our full descriptor (including all parents) as [Instancename]:[...]:[...].
 
void setParamsFromFile (std::string const &filename)
 Set some parameters from a file.
 
std::istream & setParamsFromStream (std::istream &is, std::string const &absfile)
 Set some parameters from an open stream.
 
virtual void paramInfo (std::shared_ptr< UserInterface > s, std::map< std::string, std::string > &categs, bool skipFrozen, std::string const &cname="", std::string const &pfx="")
 Get machine-oriented descriptions of all parameters.
 
void foreachParam (std::function< void(std::string const &compname, ParameterBase *p)> func, std::string const &cname="")
 Run a function on every param we hold.
 
template<typename T >
std::shared_ptr< DynamicParameter< T > > addDynamicParameter (std::string const &name, std::string const &description, T const &defaultValue, ParameterCategory const &category)
 Add a new parameter after the Component has already been constructed.
 
template<typename T , template< typename > class ValidValuesSpec>
std::shared_ptr< DynamicParameter< T > > addDynamicParameter (std::string const &name, std::string const &description, T const &defaultValue, ValidValuesSpec< T > const &validValuesSpec, ParameterCategory const &category)
 Add a new parameter after the Component has already been constructed.
 
template<typename T >
void setDynamicParameterCallback (std::string const &name, std::function< void(T const &)> cb, bool callnow=true)
 Register a callback with a previously created dynamic parameter.
 
void removeDynamicParameter (std::string const &name, bool throw_if_not_found=true)
 Remove a previously added dynamic parameter.
 
void setPath (std::string const &path)
 Assign a filesystem path to this component.
 
std::filesystem::path absolutePath (std::filesystem::path const &path="")
 If given path is relative (not starting with /), prepend the Component path to it.
 
- Public Member Functions inherited from jevois::ParameterRegistry
virtual ~ParameterRegistry ()
 Virtual destructor for safe inheritance.
 

Protected Member Functions

void onParamChange (preprocessor::pypre const &param, std::string const &newval) override
 
- Protected Member Functions inherited from jevois::Component
virtual void preInit ()
 Called before all sub-Components are init()ed.
 
virtual void postInit ()
 Called after all sub-Components are init()ed.
 
virtual void preUninit ()
 Called before all sub-Components are uninit()ed.
 
virtual void postUninit ()
 Called after all sub-Components are uninit()ed.
 
- Protected Member Functions inherited from jevois::ParameterRegistry
void addParameter (ParameterBase *const param)
 The Parameter class uses this method to register itself on construction with its owning Component.
 
void removeParameter (ParameterBase *const param)
 The Parameter class uses this method to un-register itself on destruction with its owning Component.
 
void callbackInitCall ()
 For all parameters that have a callback which has never been called, call it with the default param value.
 

Protected Attributes

std::shared_ptr< PreProcessorPythonImplitsImpl
 

Related Symbols

(Note that these are not member symbols.)

 JEVOIS_DECLARE_PARAMETER_WITH_CALLBACK (pypre, std::string, "Full path of the python pre-processor file. Name of " "class defined in the file must match the file name without the " "trailing '.py'", "", ParamCateg)
 Parameter.
 

Constructor & Destructor Documentation

◆ PreProcessorPython()

jevois::dnn::PreProcessorPython::PreProcessorPython ( std::string const &  instance)

Constructor.

Definition at line 146 of file PreProcessorPython.C.

References itsImpl.

◆ ~PreProcessorPython()

jevois::dnn::PreProcessorPython::~PreProcessorPython ( )
virtual

Destructor.

Definition at line 153 of file PreProcessorPython.C.

Member Function Documentation

◆ freeze()

void jevois::dnn::PreProcessorPython::freeze ( bool  doit)
overridevirtual

Freeze/unfreeze parameters that users should not change while running.

Implements jevois::dnn::PreProcessor.

Definition at line 157 of file PreProcessorPython.C.

◆ onParamChange()

void jevois::dnn::PreProcessorPython::onParamChange ( preprocessor::pypre const &  param,
std::string const &  newval 
)
overrideprotected

Definition at line 167 of file PreProcessorPython.C.

◆ process()

std::vector< cv::Mat > jevois::dnn::PreProcessorPython::process ( cv::Mat const &  img,
bool  swaprb,
std::vector< vsi_nn_tensor_attr_t > const &  attrs,
std::vector< cv::Rect > &  crops 
)
overridevirtual

Extract blobs from input image.

Implements jevois::dnn::PreProcessor.

Definition at line 174 of file PreProcessorPython.C.

◆ report()

void jevois::dnn::PreProcessorPython::report ( jevois::StdModule mod,
jevois::RawImage outimg = nullptr,
jevois::OptGUIhelper helper = nullptr,
bool  overlay = true,
bool  idle = false 
)
overridevirtual

Report what happened in last process() to console/output video/GUI.

Implements jevois::dnn::PreProcessor.

Definition at line 180 of file PreProcessorPython.C.

Friends And Related Symbol Documentation

◆ JEVOIS_DECLARE_PARAMETER_WITH_CALLBACK()

JEVOIS_DECLARE_PARAMETER_WITH_CALLBACK ( pypre  ,
std::string  ,
"Full path of the python pre-processor file. Name of " "class defined in the file must match the file name without the " "trailing '.py'"  ,
""  ,
ParamCateg   
)
related

Parameter.

Member Data Documentation

◆ itsImpl

std::shared_ptr<PreProcessorPythonImpl> jevois::dnn::PreProcessorPython::itsImpl
protected

Definition at line 59 of file PreProcessorPython.H.

Referenced by PreProcessorPython().


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