Lookup values of an array based on sequences and/or arrays. More...
Data Structures | |
| class | features |
| Represents a feature returned by a feature detector. More... | |
Functions | |
| AFAPI af_err | af_create_features (af_features *feat, dim_t num) |
Creates a new af_feature object with num features. | |
| AFAPI af_err | af_retain_features (af_features *out, const af_features feat) |
| Increases the reference count of the feature and all of its associated arrays. | |
| AFAPI af_err | af_get_features_num (dim_t *num, const af_features feat) |
| Returns the number of features associated with this object. | |
| AFAPI af_err | af_get_features_xpos (af_array *out, const af_features feat) |
| Returns the x positions of the features. | |
| AFAPI af_err | af_get_features_ypos (af_array *out, const af_features feat) |
| Returns the y positions of the features. | |
| AFAPI af_err | af_get_features_score (af_array *score, const af_features feat) |
| Returns the scores of the features. | |
| AFAPI af_err | af_get_features_orientation (af_array *orientation, const af_features feat) |
| Returns the orientations of the features. | |
| AFAPI af_err | af_get_features_size (af_array *size, const af_features feat) |
| Returns the size of the features. | |
| AFAPI af_err | af_release_features (af_features feat) |
| Reduces the reference count of each of the features. | |
Lookup values of an array based on sequences and/or arrays.
| AFAPI af_err af_create_features | ( | af_features * | feat, |
| dim_t | num ) |
Creates a new af_feature object with num features.
| [out] | feat | The new feature that will be created |
| [in] | num | The number of features that will be in the new features object |
| AFAPI af_err af_get_features_num | ( | dim_t * | num, |
| const af_features | feat ) |
Returns the number of features associated with this object.
| [out] | num | The number of features in the object |
| [in] | feat | The feature whose count will be returned |
| AFAPI af_err af_get_features_orientation | ( | af_array * | orientation, |
| const af_features | feat ) |
Returns the orientations of the features.
| [out] | orientation | An array with the orientations of the features |
| [in] | feat | The features object |
| AFAPI af_err af_get_features_score | ( | af_array * | score, |
| const af_features | feat ) |
Returns the scores of the features.
| [out] | score | An array with scores of the features |
| [in] | feat | The features object |
| AFAPI af_err af_get_features_size | ( | af_array * | size, |
| const af_features | feat ) |
Returns the size of the features.
| [out] | size | An array with the sizes of the features |
| [in] | feat | The features object |
| AFAPI af_err af_get_features_xpos | ( | af_array * | out, |
| const af_features | feat ) |
Returns the x positions of the features.
| [out] | out | An array with all x positions of the features |
| [in] | feat | The features object |
| AFAPI af_err af_get_features_ypos | ( | af_array * | out, |
| const af_features | feat ) |
Returns the y positions of the features.
| [out] | out | An array with all y positions of the features |
| [in] | feat | The features object |
| AFAPI af_err af_release_features | ( | af_features | feat | ) |
Reduces the reference count of each of the features.
| [in] | feat | The features object whose reference count will be reduced |
| AFAPI af_err af_retain_features | ( | af_features * | out, |
| const af_features | feat ) |
Increases the reference count of the feature and all of its associated arrays.
| [out] | out | The reference to the incremented array |
| [in] | feat | The features object whose will be incremented object |