Visible to Intel only — GUID: GUID-47BD1CC3-E1DD-4225-BC7A-E74E774DFB01
Visible to Intel only — GUID: GUID-47BD1CC3-E1DD-4225-BC7A-E74E774DFB01
GetTileParamsByIndex
Returns the offset and size of a tile by a given index.
Syntax
Case 1: Operation with TL functions based on the Platform Aware API
IppStatus ippiGetTileParamsByIndex_LT(IppSizeL index, IppiPointL splitImage, IppiSizeL tileSize, IppiSizeL tailSize, IppiPointL* pTileOffset, IppiSizeL* pTileSize);
Case 2: Operation with TL functions based on the Classic API
IppStatus ippiGetTileParamsByIndex_T(int index, IppiPoint splitImage, IppiSize tileSize, IppiSize tailSize, IppiPoint* pTileOffset, IppiSize* pTileSize);
Include Files
ippi_tl.h
Parameters
index |
Ordinal index of a tile. |
splitImage |
Split of the image by x and y axis correspondingly. |
tileSize |
Size of a tile. |
tailSize |
Size of the last bottom right tile. |
pTileOffset |
Offset of the tile corresponding to the top left image corner. |
pTileSize |
Size of a tile. |
Description
This function returns the offset and size of a tile by a given index.
Return Values
ippStsNoErr |
Indicates no error. |
ippStsNullPtrErr |
Indicates an error condition when the pTileOffset or pTileSize pointer is NULL. |