struct CvNArrayIterator

Overview

matrix iterator: used for n-ary operations on dense arrays Moreā€¦

#include <core_c.h>

struct CvNArrayIterator
{
    // fields

    int count;
    int dims;
    CvMatND* hdr[10];
    uchar* ptr[10];
    CvSize size;
    int stack[CV_MAX_DIM];
};

Detailed Documentation

matrix iterator: used for n-ary operations on dense arrays

Fields

int count

number of arrays

int dims

number of dimensions to iterate

CvMatND* hdr[10]

pointers to the headers of the matrices that are processed

uchar* ptr[10]

pointers to the array slices

CvSize size

maximal common linear size: { width = size, height = 1 }

int stack[CV_MAX_DIM]

for internal use