Defines an autocontrol region of interest (in pixel space). 
This region consists of a rectangle (inherited from the Rectangle<uint32_t> Tuple) and a floating point weight value. 
Definition at line 826 of file Types.h.
|  | 
|  | AcRegion () | 
|  | 
|  | AcRegion (uint32_t _left, uint32_t _top, uint32_t _right, uint32_t _bottom, float _weight) | 
|  | 
| float & | weight () | 
|  | 
| const float & | weight () const | 
|  | 
| uint32_t & | left () | 
|  | 
| const uint32_t & | left () const | 
|  | 
| uint32_t & | top () | 
|  | 
| const uint32_t & | top () const | 
|  | 
| uint32_t & | right () | 
|  | 
| const uint32_t & | right () const | 
|  | 
| uint32_t & | bottom () | 
|  | 
| const uint32_t & | bottom () const | 
|  | 
| uint32_t | width () const | 
|  | Returns the width of the rectangle.  More... 
 | 
|  | 
| uint32_t | height () const | 
|  | Returns the height of the rectangle.  More... 
 | 
|  | 
| uint32_t | area () const | 
|  | Returns the area of the rectangle (width * height).  More... 
 | 
|  | 
| bool | operator== (const Tuple< N, uint32_t > &rhs) const | 
|  | Returns true when every element in the two tuples are identical.  More... 
 | 
|  | 
| bool | operator!= (const Tuple< N, uint32_t > &rhs) const | 
|  | Returns true if there are any differences between the two tuples.  More... 
 | 
|  | 
| Tuple< N, uint32_t > & | operator+= (const Tuple< N, uint32_t > &rhs) | 
|  | Adds every element of another tuple to the elements of this tuple.  More... 
 | 
|  | 
| Tuple< N, uint32_t > & | operator-= (const Tuple< N, uint32_t > &rhs) | 
|  | Subtracts every element of another tuple from the elements of this tuple.  More... 
 | 
|  | 
| Tuple< N, uint32_t > & | operator*= (const uint32_t &rhs) | 
|  | Multiplies every element in the tuple by a single value.  More... 
 | 
|  | 
| Tuple< N, uint32_t > & | operator/= (const uint32_t &rhs) | 
|  | Divides every element in the tuple by a single value.  More... 
 | 
|  | 
| const Tuple< N, uint32_t > | operator+ (const Tuple< N, uint32_t > &rhs) const | 
|  | Returns the result of adding another tuple to this tuple.  More... 
 | 
|  | 
| const Tuple< N, uint32_t > | operator- (const Tuple< N, uint32_t > &rhs) const | 
|  | Returns the result of subtracting another tuple from this tuple.  More... 
 | 
|  | 
| const Tuple< N, uint32_t > | operator* (const uint32_t &rhs) const | 
|  | Returns the result of multiplying this tuple by a single value.  More... 
 | 
|  | 
| const Tuple< N, uint32_t > | operator/ (const uint32_t &rhs) const | 
|  | Returns the result of dividing this tuple by a single value.  More... 
 | 
|  | 
| uint32_t & | operator[] (unsigned int i) | 
|  | 
| const uint32_t & | operator[] (unsigned int i) const | 
|  |