struct CvAttrList
Overview
List of attributes. : Moreā¦
#include <types_c.h> struct CvAttrList { // fields const char** attr; struct CvAttrList* next; };
Detailed Documentation
List of attributes. :
In the current implementation, attributes are used to pass extra parameters when writing user objects (see cvWrite). XML attributes inside tags are not supported, aside from the object type specification (type_id attribute).
See also:
Fields
const char** attr
NULL-terminated array of (attribute_name,attribute_value) pairs.
struct CvAttrList* next
Pointer to next chunk of the attributes list.