![]() |
IPSDK
4_1_0_2
IPSDK : Image Processing Software Development Kit
|
Base class for image tile 2d collection split operations for data dispatch. More...
#include <BaseImageTile2dCollSplit.h>
Public Types | |
| typedef OutputTileType::ImageType | InputImageType |
| input image type associated to operation | |
Public Member Functions | |
| eImageTileCollSplitType | getImageTileCollSplitType () const |
| retrieve image tile collection split type | |
Constructors and destructor | |
| BaseImageTile2dCollSplit () | |
| virtual | ~BaseImageTile2dCollSplit ()=0 |
Public Member Functions inherited from ipsdk::imaproc::BaseImageTileCollSplit< OutputTileType::ImageType > | |
| processor::eSplitDynamicType | getSplitDynamicType () const |
| retrieve dynamic split operation type | |
| eImageSplitType | getImageSplitType () const |
| retrieve image split operation type | |
| const image::BaseImage & | getImage () const |
| retrieve image from where tiles are extracted More... | |
| BaseImageTileCollSplit () | |
| virtual | ~BaseImageTileCollSplit ()=0 |
Public Member Functions inherited from ipsdk::processor::BaseDynamicSplit | |
| eSplitBaseType | getSplitBaseType () const |
| retrieve split operation base type | |
| ipUInt64 | getNbMinEltsPerSplit () const |
| retrieve minimum number of elements for a split operation More... | |
| ipUInt64 | getNbMaxEltsPerSplit () const |
| retrieve maximum number of elements for a split operation More... | |
| BoolResult | initAttribute (BaseProcessor &processor, const ipUInt64 elementsStartIndex, const ipUInt64 nbElements, const core::BaseRequestOrigin &requestOrigin) |
| initialize processor attribute associate to split operation for a starting element index and a number of elements More... | |
| BaseDynamicSplit () | |
| virtual | ~BaseDynamicSplit ()=0 |
Public Member Functions inherited from ipsdk::processor::BaseDataSplit | |
| virtual const std::string & | getAttributeName () const =0 |
| retrieve attribute name associated to split operation | |
| virtual const std::string & | getAttributeToolTip () const =0 |
| retrieve attribute tooltip associated to split operation | |
| bool | isInit () const |
| retrieve object initialization flag | |
| bool | isSplitted () const |
| check whether object will be associated to split operation More... | |
| const ElementsLocationInfo & | getElementsLocationInfo () const |
| retrieve data location informations More... | |
| ipUInt64 | getFullMemorySize () const |
| retrieve full memory data size for elements More... | |
| bool | areDataLocalized () const |
| check whether data are localized More... | |
| bool | hasLocalData () const |
| check whether some data are local data More... | |
| bool | hasRemoteData () const |
| check whether some data are remote data More... | |
| void | disableDataLocalization () |
| method allowing to disable data localization More... | |
| BaseDataSplit () | |
| virtual | ~BaseDataSplit ()=0 |
| ipUInt64 | getNbElements () const |
| retrieve total number of elements associated to input data More... | |
| ipUInt64 | getDataMemorySize (const ipUInt64 elementIdx) const |
| retrieve memory size of data for a given element More... | |
| ipUInt64 | getDataMemorySize () const |
| retrieve memory size of data for a given element More... | |
Protected Types | |
| typedef boost::shared_ptr< OutputTileType > | Tile2dPtr |
| shared pointer to tile | |
| typedef std::vector< Tile2dPtr > | Tile2dColl |
| tile 2d collection created by splitting operation | |
Protected Member Functions | |
| void | initBase (const boost::shared_ptr< InputImageType > &pImage, const Tile2dCoordsColl &tile2dCoordsColl, const ipUInt64 nbMinEltsPerSplit, const ipUInt64 nbMaxEltsPerSplit) |
| base class initialization method More... | |
| virtual Tile2dPtr | extractTile2d (const Tile2dCoords &curTile2dCoords)=0 |
| method allowing to create a new tile given its coordinates | |
| virtual BoolResult | processAttribute (processor::BaseProcessor &processor, const Tile2dColl &tile2dColl)=0 |
| initialize processor attribute associate to split operation for a given tile 2d collection More... | |
Protected Member Functions inherited from ipsdk::imaproc::BaseImageTileCollSplit< OutputTileType::ImageType > | |
| void | initBase (const boost::shared_ptr< OutputTileType::ImageType > &pImage, const processor::ElementsLocationInfo &elementsLocationInfo, const ipUInt64 nbMinEltsPerSplit=1, const ipUInt64 nbMaxEltsPerSplit=NumericLimits< ipUInt64 >::max()) |
| base class initialization method More... | |
| const boost::shared_ptr< OutputTileType::ImageType > & | getImagePtr () const |
| retrieve image pointer from where tiles are extracted More... | |
Protected Member Functions inherited from ipsdk::processor::BaseDynamicSplit | |
| void | initSplitted (const ElementsLocationInfo &elementsLocationInfo, const ipUInt64 nbMinEltsPerSplit=1, const ipUInt64 nbMaxEltsPerSplit=NumericLimits< ipUInt64 >::max()) |
| base class initialization method for splitted case More... | |
| void | initUnSplitted (const ElementsLocationInfo &elementsLocationInfo) |
| base class initialization method for un splitted case More... | |
Protected Member Functions inherited from ipsdk::processor::BaseDataSplit | |
| void | initBaseSplitted (const ElementsLocationInfo &elementsLocationInfo) |
| base class initialization method for splitted elements More... | |
| void | initBaseUnSplitted (const ElementsLocationInfo &elementsLocationInfo) |
| base class initialization method for un splitted elements More... | |
| virtual bool | checkProcessorType (const processor::BaseProcessor &processor)=0 |
| check processor type in derived class | |
| void | throwNullInputSharedPtr () |
Protected Attributes | |
| Tile2dCoordsColl | _tile2dCoordsColl |
| collection of tile coordinates associated to split | |
Protected Attributes inherited from ipsdk::processor::BaseDynamicSplit | |
| ipUInt64 | _nbMinEltsPerSplit |
| minimum number of elements for a split operation | |
| ipUInt64 | _nbMaxEltsPerSplit |
| maximum number of elements for a split operation | |
Additional Inherited Members | |
Static Public Attributes inherited from ipsdk::processor::BaseDynamicSplit | |
| static const eSplitBaseType::domain | g_splitBaseType = eSplitBaseType::eSBT_Dynamic |
| data split type associated to object | |
Base class for image tile 2d collection split operations for data dispatch.
|
protected |
base class initialization method
| ipsdk::imaproc::IPSDKImageProcessingException | if pImage.get() == 0 |
| ipsdk::imaproc::IPSDKImageProcessingException | if pImage->getVolumeGeometryType() != image::eVolumeGeometryType::eVGT_2d |
| ipsdk::imaproc::IPSDKImageProcessingException | if pImage->getColorGeometryType() != image::eColorGeometryType::eCGT_Grey |
| ipsdk::imaproc::IPSDKImageProcessingException | if pImage->getTemporalGeometryType() != image::eTemporalGeometryType::eTGT_Single |
| ipsdk::processor::IPSDKBaseProcessingException | if tile2dCoordsColl.empty() == true |
| ipsdk::processor::IPSDKBaseProcessingException | if nbMinEltsPerSplit == 0 |
| ipsdk::processor::IPSDKBaseProcessingException | if nbMaxEltsPerSplit < nbMinEltsPerSplit |
|
protectedpure virtual |
initialize processor attribute associate to split operation for a given tile 2d collection
Implemented in ipsdk::imaproc::InputImageTile2dCollSplit< TProcessor, TAttribute >, and ipsdk::imaproc::ImageTile2dCollSplit< TProcessor, TAttribute >.
1.8.14