struct CvSeqBlock
Overview
#include <types_c.h> struct CvSeqBlock { // fields int count; schar* data; struct CvSeqBlock* next; struct CvSeqBlock* prev; int start_index; };
Detailed Documentation
Fields
int count
Number of elements in the block.
schar* data
Pointer to the first element of the block.
struct CvSeqBlock* next
Next sequence block.
struct CvSeqBlock* prev
Previous sequence block.
int start_index
Index of the first element in the block + sequence->first->start_index.