typedef struct _IplImage ...{ int nSize /**//* size of iplImage struct */ int ID /**//* image header version */ int nChannels; int alphaChannel; int depth; /**//* pixel depth in bits */ char colorModel[4]; char channelSeq[4]; int dataOrder; int origin; int align; /**//* 4- or 8-byte align */ int width; int height; struct _IplROI *roi; /**//* pointer to ROI if any */ struct _IplImage *maskROI; /**//*pointer to mask ROI if any */ void*imageId; /**//* use of the application */ struct _IplTileInfo *tileInfo; /**//* contains information on tiling */ int imageSize; /**//* useful size in bytes */ char*imageData; /**//* pointer to aligned image */ int widthStep; /**//* size of aligned line in bytes */ int BorderMode[4]; /**//* the top, bottom, left, and right border mode */ int BorderConst[4]; /**//* constants for the top, bottom, left, and right border */ char*imageDataOrigin; /**//* ptr to full, nonaligned image */ } IplImage;