OpenCV453
|
Abstract base class for TrackerTargetState that represents a possible state of the target. [詳解]
#include <tracking.detail.hpp>
cv::detail::tracking::TrackerStateEstimatorAdaBoosting::TrackerAdaBoostingTargetStateに継承されています。
公開メンバ関数 | |
Point2f | getTargetPosition () const |
Get the position [詳解] | |
void | setTargetPosition (const Point2f &position) |
Set the position [詳解] | |
int | getTargetWidth () const |
Get the width of the target [詳解] | |
void | setTargetWidth (int width) |
Set the width of the target [詳解] | |
int | getTargetHeight () const |
Get the height of the target [詳解] | |
void | setTargetHeight (int height) |
Set the height of the target [詳解] | |
限定公開変数類 | |
Point2f | targetPosition |
int | targetWidth |
int | targetHeight |
Abstract base class for TrackerTargetState that represents a possible state of the target.
See [AAM] all the states candidates.
Inherits this class with your Target state, In own implementation you can add scale variation, width, height, orientation, etc.
int cv::detail::tracking::TrackerTargetState::getTargetHeight | ( | ) | const |
Get the height of the target
Point2f cv::detail::tracking::TrackerTargetState::getTargetPosition | ( | ) | const |
Get the position
int cv::detail::tracking::TrackerTargetState::getTargetWidth | ( | ) | const |
Get the width of the target
void cv::detail::tracking::TrackerTargetState::setTargetHeight | ( | int | height | ) |
Set the height of the target
height | The height of the target |
void cv::detail::tracking::TrackerTargetState::setTargetPosition | ( | const Point2f & | position | ) |
Set the position
position | The position |
void cv::detail::tracking::TrackerTargetState::setTargetWidth | ( | int | width | ) |
Set the width of the target
width | The width of the target |