Intel® Integrated Performance Primitives (Intel® IPP) Developer Guide and Reference

ID 790148
Date 3/22/2024
Public

A newer version of this document is available. Customers should click here to go to the newest version.

Document Table of Contents

HOGGetBufferSize

Computes the size of the work buffer for the ippiHOG function.

Syntax

IppStatus ippiHOGGetBufferSize(const IppiHOGSpec* pHOGSpec, IppiSize roiSize, int* pBufferSize);

Include Files

ippi.h

Domain Dependencies

Headers: ippcore.h, ippvm.h, ipps.h

Libraries: ippcore.lib, ippvm.lib, ipps.lib

Parameters

pHOGSpec

Pointer to the HOG context structure.

roiSize

Maximum size of the source image ROI, in pixels.

pBufferSize

Pointer to the size of the work buffer, in bytes.

Description

This function computes the size of the work buffer for the HOG function.

For an example on how to use this function, refer to the example provided with the HOG function description.

Return Values

ippStsNoErr
Indicates no error. Any other value indicates an error.
ippStsNullPtrErr
Indicates an error when one of the specified pointers is NULL.
ippStsContextmatchErr
Indicates an error when the context parameter does not match the operation.

See Also