YARP
Yet Another Robot Platform
 
Loading...
Searching...
No Matches
_IplImage Struct Reference

#include <yarp/sig/impl/IplImage.h>

Public Attributes

int nChannels
 Most of OpenCV functions support 1,2,3 or 4 channels.
 
int depth
 pixel depth in bits: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16S, IPL_DEPTH_32S, IPL_DEPTH_32F and IPL_DEPTH_64F are supported
 
int origin
 0 - top-left origin, 1 - bottom-left origin (Windows bitmaps style)
 
int align
 Alignment of image rows (4 or 8).
 
int width
 image width in pixels
 
int height
 image height in pixels
 
int imageSize
 image data size in bytes (==image->height*image->widthStep in case of interleaved data)
 
char * imageData
 pointer to aligned image data
 
int widthStep
 size of aligned image row in bytes
 

Detailed Description

Definition at line 81 of file IplImage.h.

Member Data Documentation

◆ align

int _IplImage::align

Alignment of image rows (4 or 8).

OpenCV ignores it and uses widthStep instead

Definition at line 87 of file IplImage.h.

◆ depth

int _IplImage::depth

pixel depth in bits: IPL_DEPTH_8U, IPL_DEPTH_8S, IPL_DEPTH_16S, IPL_DEPTH_32S, IPL_DEPTH_32F and IPL_DEPTH_64F are supported

Definition at line 83 of file IplImage.h.

◆ height

int _IplImage::height

image height in pixels

Definition at line 90 of file IplImage.h.

◆ imageData

char* _IplImage::imageData

pointer to aligned image data

Definition at line 94 of file IplImage.h.

◆ imageSize

int _IplImage::imageSize

image data size in bytes (==image->height*image->widthStep in case of interleaved data)

Definition at line 91 of file IplImage.h.

◆ nChannels

int _IplImage::nChannels

Most of OpenCV functions support 1,2,3 or 4 channels.

Definition at line 82 of file IplImage.h.

◆ origin

int _IplImage::origin

0 - top-left origin, 1 - bottom-left origin (Windows bitmaps style)

Definition at line 85 of file IplImage.h.

◆ width

int _IplImage::width

image width in pixels

Definition at line 89 of file IplImage.h.

◆ widthStep

int _IplImage::widthStep

size of aligned image row in bytes

Definition at line 95 of file IplImage.h.


The documentation for this struct was generated from the following file: