KVXMLImageInfo
This structure contains the dimensions of an image in pixels. It is defined in kvxml.h
. You must initialize it by calling KVStructInit()
before you obtain image dimensions by using the fpGetOutputImageInfo()
function.
typedef struct tag_KVXMLImageInfo{ KVStructHeader; int nWidth; int nHeight; } KVXMLImageInfo;
Member Descriptions
KVStructHeader
|
The KeyView version of the structure. See KVStructHead. |
nWidth
|
The image width in pixels. |
nHeight
|
The image height in pixels. |