| eLynx SDK
v3.0.1 C++ image processing API reference |
#include <IImageHandler.h>

Public Member Functions | |
| virtual | ~IImageHandler () |
| Virtual destructor. | |
AbstractImage factories | |
| virtual boost::shared_ptr < AbstractImage > | CreateImage (uint32 iWidth, uint32 iHeight) const =0 |
| virtual boost::shared_ptr < AbstractImage > | CreateImage (const AbstractImage &iImage) const =0 |
| virtual boost::shared_ptr < AbstractImage > | CreateImage (const AbstractImage &iImage, EResolution iResolution, bool ibScaled=true) const =0 |
| virtual boost::shared_ptr < AbstractImage > | CreateImageUByteFullDynamic (const AbstractImage &iImage) const =0 |
Specialized handler factories, ISO pixel format. | |
| virtual const IImageGeometry & | GetGeometryHandler () const =0 |
| virtual const IImageAnalyse & | GetAnalyseHandler () const =0 |
| virtual const IImageOperators & | GetOperatorsHandler () const =0 |
| virtual const IImagePointProcessing & | GetPointToPointHandler () const =0 |
| virtual const IImageLocalProcessing & | GetLocalToPointHandler () const =0 |
| virtual const IImageGlobalProcessing & | GetGlobalToPointHandler () const =0 |
| virtual const IImageEdgeProcessing & | GetEdgeProcessingHandler () const =0 |
| virtual const IImageMorphologicalProcessing & | GetMorphologicalHandler () const =0 |
| virtual const IImageMiscProcessing & | GetMiscHandler () const =0 |
| virtual const IImageRasterization & | GetRasterizationHandler () const =0 |
| virtual const IImageRestoration & | GetRestorationHandler () const =0 |
Definition at line 46 of file IImageHandler.h.
| virtual eLynx::Image::IImageHandler::~IImageHandler | ( | ) | [virtual] |
Virtual destructor.
| virtual boost::shared_ptr<AbstractImage> eLynx::Image::IImageHandler::CreateImage | ( | uint32 | iWidth, | |
| uint32 | iHeight | |||
| ) | const [pure virtual] |
Create an abstract image with requested size.
| iWidth | width of new image. | |
| iHeight | height of new image. |
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual boost::shared_ptr<AbstractImage> eLynx::Image::IImageHandler::CreateImage | ( | const AbstractImage & | iImage | ) | const [pure virtual] |
Create a cloned image, ISO pixel format.
| iImage | The image to clone. |
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual boost::shared_ptr<AbstractImage> eLynx::Image::IImageHandler::CreateImage | ( | const AbstractImage & | iImage, | |
| EResolution | iResolution, | |||
| bool | ibScaled = true | |||
| ) | const [pure virtual] |
Create an image with requested resolution, ISO color space. Keep dimensions, pixel type, transform map with new resolution.
| iImage | The source image. | |
| iResolution | The requested resolution, could be the same as source image (cloning). | |
| ibScaled | true for scale to full range, false for simple cast. |
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual boost::shared_ptr<AbstractImage> eLynx::Image::IImageHandler::CreateImageUByteFullDynamic | ( | const AbstractImage & | iImage | ) | const [pure virtual] |
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageGeometry& eLynx::Image::IImageHandler::GetGeometryHandler | ( | ) | const [pure virtual] |
Get image geometry handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageAnalyse& eLynx::Image::IImageHandler::GetAnalyseHandler | ( | ) | const [pure virtual] |
Get image analyse handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageOperators& eLynx::Image::IImageHandler::GetOperatorsHandler | ( | ) | const [pure virtual] |
Get image operators handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImagePointProcessing& eLynx::Image::IImageHandler::GetPointToPointHandler | ( | ) | const [pure virtual] |
Get point to point image processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageLocalProcessing& eLynx::Image::IImageHandler::GetLocalToPointHandler | ( | ) | const [pure virtual] |
Get local to point image processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageGlobalProcessing& eLynx::Image::IImageHandler::GetGlobalToPointHandler | ( | ) | const [pure virtual] |
Get global to point image processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageEdgeProcessing& eLynx::Image::IImageHandler::GetEdgeProcessingHandler | ( | ) | const [pure virtual] |
Get edge processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageMorphologicalProcessing& eLynx::Image::IImageHandler::GetMorphologicalHandler | ( | ) | const [pure virtual] |
Get morphological processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageMiscProcessing& eLynx::Image::IImageHandler::GetMiscHandler | ( | ) | const [pure virtual] |
Get misceallenous processing handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageRasterization& eLynx::Image::IImageHandler::GetRasterizationHandler | ( | ) | const [pure virtual] |
Get rasterization handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.
| virtual const IImageRestoration& eLynx::Image::IImageHandler::GetRestorationHandler | ( | ) | const [pure virtual] |
Get restoration handler.
Implemented in eLynx::Image::ImageHandlerImpl< Pixel >.