![]() |
Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
#include "modules/orange_avoider/orange_avoider.h"
#include "firmwares/rotorcraft/navigation.h"
#include "generated/airframe.h"
#include "state.h"
#include "modules/core/abi.h"
#include <time.h>
#include <stdio.h>
#include "generated/flight_plan.h"
Go to the source code of this file.
Macros | |
#define | ORANGE_AVOIDER_VERBOSE TRUE |
#define | PRINT(string, ...) fprintf(stderr, "[orange_avoider->%s()] " string,__FUNCTION__ , ##__VA_ARGS__) |
#define | VERBOSE_PRINT(...) |
#define | ORANGE_AVOIDER_VISUAL_DETECTION_ID ABI_BROADCAST |
Enumerations | |
enum | navigation_state_t { SAFE , OBSTACLE_FOUND , SEARCH_FOR_SAFE_HEADING , OUT_OF_BOUNDS } |
Variables | |
float | oa_color_count_frac = 0.18f |
enum navigation_state_t | navigation_state = SEARCH_FOR_SAFE_HEADING |
int32_t | color_count = 0 |
int16_t | obstacle_free_confidence = 0 |
float | heading_increment = 5.f |
float | maxDistance = 2.25 |
const int16_t | max_trajectory_confidence = 5 |
static abi_event | color_detection_ev |
The color filter settings are set using the cv_detect_color_object. This module can run multiple filters simultaneously so you have to define which filter to use with the ORANGE_AVOIDER_VISUAL_DETECTION_ID setting.
Definition in file orange_avoider.c.
Definition at line 30 of file orange_avoider.c.
#define ORANGE_AVOIDER_VISUAL_DETECTION_ID ABI_BROADCAST |
Definition at line 72 of file orange_avoider.c.
#define PRINT | ( | string, | |
... | |||
) | fprintf(stderr, "[orange_avoider->%s()] " string,__FUNCTION__ , ##__VA_ARGS__) |
Definition at line 32 of file orange_avoider.c.
#define VERBOSE_PRINT | ( | ... | ) |
Definition at line 36 of file orange_avoider.c.
Enumerator | |
---|---|
SAFE | |
OBSTACLE_FOUND | |
SEARCH_FOR_SAFE_HEADING | |
OUT_OF_BOUNDS |
Definition at line 45 of file orange_avoider.c.
Definition at line 207 of file orange_avoider.c.
References foo, heading, POS_BFP_OF_REAL, POS_FLOAT_OF_BFP, FloatEulers::psi, stateGetNedToBodyEulers_f(), stateGetPositionEnu_f(), stateGetPositionEnu_i(), VERBOSE_PRINT, EnuCoor_i::x, and EnuCoor_i::y.
Referenced by moveWaypointForward().
Definition at line 234 of file orange_avoider.c.
References foo, heading_increment, and VERBOSE_PRINT.
Referenced by orange_avoider_init(), and orange_avoider_periodic().
|
static |
Definition at line 75 of file orange_avoider.c.
References color_count.
Referenced by orange_avoider_init().
Definition at line 179 of file orange_avoider.c.
References FLOAT_ANGLE_NORMALIZE, foo, RotorcraftNavigation::heading, nav, new_heading, FloatEulers::psi, stateGetNedToBodyEulers_f(), and VERBOSE_PRINT.
Referenced by orange_avoider_periodic().
Definition at line 223 of file orange_avoider.c.
References foo, POS_FLOAT_OF_BFP, VERBOSE_PRINT, and waypoint_move_xy_i().
Referenced by moveWaypointForward().
Definition at line 196 of file orange_avoider.c.
References calculateForwards(), foo, and moveWaypoint().
Referenced by orange_avoider_periodic().
Definition at line 86 of file orange_avoider.c.
References chooseRandomIncrementAvoidance(), color_detection_cb(), color_detection_ev, foo, ORANGE_AVOIDER_VISUAL_DETECTION_ID, and time.
Definition at line 99 of file orange_avoider.c.
References autopilot_in_flight(), chooseRandomIncrementAvoidance(), color_count, foo, front_camera, heading_increment, increase_nav_heading(), max_trajectory_confidence, maxDistance, moveDistance, moveWaypointForward(), oa_color_count_frac, OBSTACLE_FOUND, obstacle_free_confidence, OUT_OF_BOUNDS, SAFE, SEARCH_FOR_SAFE_HEADING, VERBOSE_PRINT, waypoint_move_here_2d(), WaypointX, and WaypointY.
int32_t color_count = 0 |
Definition at line 57 of file orange_avoider.c.
Referenced by color_detection_cb(), and orange_avoider_periodic().
|
static |
Definition at line 74 of file orange_avoider.c.
Referenced by orange_avoider_init().
Definition at line 59 of file orange_avoider.c.
Referenced by chooseRandomIncrementAvoidance(), and orange_avoider_periodic().
Definition at line 62 of file orange_avoider.c.
Referenced by orange_avoider_periodic().
float maxDistance = 2.25 |
Definition at line 60 of file orange_avoider.c.
Referenced by orange_avoider_periodic().
Definition at line 56 of file orange_avoider.c.
Definition at line 53 of file orange_avoider.c.
Referenced by orange_avoider_periodic().
int16_t obstacle_free_confidence = 0 |
Definition at line 58 of file orange_avoider.c.
Referenced by orange_avoider_periodic().