![]() |
GT RoboCup SSL
Soccer software, robot firmware
|
Contains all the kalman balls/robots for the specific camera. More...
Public Member Functions | |
Camera () | |
Creates an invalid camera. | |
Camera (int cameraID) | |
Creates a valid camera with a specific id. More... | |
bool | getIsValid () const |
Returns whether this camera is valid and initialized correctly. | |
void | processBallBounce (const std::vector< WorldRobot > &yellowRobots, const std::vector< WorldRobot > &blueRobots) |
Tries to predict bounces off the best known estimation of the robots. More... | |
void | updateWithFrame (RJ::Time calcTime, const std::vector< CameraBall > &ballList, const std::vector< std::list< CameraRobot >> &yellowRobotList, const std::vector< std::list< CameraRobot >> &blueRobotList, const WorldBall &previousWorldBall, const std::vector< WorldRobot > &previousYellowWorldRobots, const std::vector< WorldRobot > &previousBlueWorldRobots) |
Updates all the filters with the latest camera frame data for this camera. More... | |
void | updateWithoutFrame (RJ::Time calcTime) |
Updates all the filters without any new data from this specific camera. More... | |
const std::list< KalmanBall > & | getKalmanBalls () const |
const std::vector< std::list< KalmanRobot > > & | getKalmanRobotsYellow () const |
const std::vector< std::list< KalmanRobot > > & | getKalmanRobotsBlue () const |
Static Public Member Functions | |
static void | createConfiguration (Configuration *cfg) |
Contains all the kalman balls/robots for the specific camera.
Camera::Camera | ( | int | cameraID | ) |
Creates a valid camera with a specific id.
cameraID | ID of this camera |
const std::list< KalmanBall > & Camera::getKalmanBalls | ( | ) | const |
const std::vector< std::list< KalmanRobot > > & Camera::getKalmanRobotsBlue | ( | ) | const |
const std::vector< std::list< KalmanRobot > > & Camera::getKalmanRobotsYellow | ( | ) | const |
void Camera::processBallBounce | ( | const std::vector< WorldRobot > & | yellowRobots, |
const std::vector< WorldRobot > & | blueRobots | ||
) |
Tries to predict bounces off the best known estimation of the robots.
yellowRobots | List of the yellow world robots in the world class |
blueRobots | List of blue world robots in the world class |
void Camera::updateWithFrame | ( | RJ::Time | calcTime, |
const std::vector< CameraBall > & | ballList, | ||
const std::vector< std::list< CameraRobot >> & | yellowRobotList, | ||
const std::vector< std::list< CameraRobot >> & | blueRobotList, | ||
const WorldBall & | previousWorldBall, | ||
const std::vector< WorldRobot > & | previousYellowWorldRobots, | ||
const std::vector< WorldRobot > & | previousBlueWorldRobots | ||
) |
Updates all the filters with the latest camera frame data for this camera.
calcTime | Time of this calculation |
ballList | Unsorted list of balls measurements |
yellowRobotList | List of yellow robots sorted by id |
blueRobotList | List of blue robots sorted by id |
previousWorldBall | Best idea of current ball pos/vel to init velocity of new filters |
previousYellowWorldRobots | Best idea of current robots pos/vel to init velocity of new filters |
previousBlueWorldRobots | Best idea of current robots pos/vel to init velocity of new filters |
Note: Call either this OR updateWithoutFrame once an iteration
void Camera::updateWithoutFrame | ( | RJ::Time | calcTime | ) |
Updates all the filters without any new data from this specific camera.
calcTime | Time of this calculation |
Note: Call either this OR updateWithFrame once an iteration