Struct arrayfire::Features [] [src]

pub struct Features { /* fields omitted */ }

A set of Array objects (usually, used in Computer vision context)

Features struct is used by computer vision functions to return the outcome of their operation. Typically, such output has the following Arrays:

  • X positions of the features
  • Y positions of the features
  • Scores of the features
  • Orientations of the features
  • Sizes of the features

Methods

impl Features
[src]

Create and return an object of type Features

This object is basically a bunch of Arrays.

Get total number of features found

Get x coordinates Array

Get y coordinates Array

Get score Array

Get orientation Array

Get features size Array

Get the internal handle for Features object

Trait Implementations

impl Clone for Features
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Drop for Features
[src]

A method called when the value goes out of scope. Read more