-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
added outlier detector to bebop sonar #1909
added outlier detector to bebop sonar #1909
Conversation
Did you consider using a median filter https://github.com/paparazzi/paparazzi/blob/master/sw/airborne/filters/median_filter.h ? It is usually very efficient at removing peeks while introducing very low delay. |
@gautierhattenberger nice idea, didn't think of that. A median filter would have the added benefit of continuously propagating a measurement unlike the current solution. If no one has a problem with that I can change the outlier detector to median filter. |
I like the idea with the median filter - certainly useful for other sonar readings (such as px4flow). |
I made the median filter variable size and expanded it to handle floats this was not strictly necessary for this application, I could have filtered the index rather than the distance but yea... If anyone has a big issue with that I can change it). This also now replaces #1780. |
sw/airborne/filters/median_filter.h
Outdated
@@ -25,6 +25,7 @@ | |||
#define MEDIAN_H | |||
|
|||
#define MAX_MEDIAN_DATASIZE 128 | |||
#define MEDIAN_DEAFULT_SIZE 5 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo here ;-/
sw/airborne/filters/median_filter.h
Outdated
@@ -24,47 +24,52 @@ | |||
#ifndef MEDIAN_H | |||
#define MEDIAN_H | |||
|
|||
#define MEDIAN_DATASIZE 5 | |||
#define MAX_MEDIAN_DATASIZE 128 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is probably a bit too much and will take a lot of unused memory in most cases. The purpose of a median filter is to remove peeks, so a size of 5 means that you never expect more than 2 peeks in 5 consecutive values. If you expect more than 64 "peeks" out of 128 values, it is probably not the correct filter... I'm not even sure of the signal will be preserved with a buffer of this size. Do we need more than a max size of 13 or so ?
This also should be merged or rebased on master to fix conflict in sonar file. |
777ecbb
to
caf6770
Compare
#ifdef SITL | ||
#include "state.h" | ||
#endif | ||
|
||
/* conversion form index difference to distance based on time of flight |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please make these comments doxygen comments...
d677802
to
3a1f986
Compare
@@ -62,7 +62,7 @@ void lidar_lite_init(void) | |||
lidar.distance = 0; | |||
lidar.distance_raw = 0; | |||
|
|||
init_median_filter(&lidar_filter); | |||
init_median_filter(&lidar_filter, 7); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be configurable from the airframe config file - maybe add a variable in lidar_lite.xml that specifies the size? Lets say in noisier applications I might want to change this value to something else.
@@ -126,7 +126,7 @@ void px4flow_i2c_init(void) | |||
px4flow.compensate_rotation = PX4FLOW_COMPENSATE_ROTATION; | |||
px4flow.stddev = PX4FLOW_NOISE_STDDEV; | |||
|
|||
init_median_filter(&sonar_filter); | |||
init_median_filter(&sonar_filter, 7); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, should be user-configurable with some default value provided.
@kirkscheper Could you fix the doxygen comments as @flixr mentioned and also the user-adjustable filter size (see my comment)? Otherwise it looks good to me. |
@kirkscheper any updates here? |
6f242c3
to
1417b4b
Compare
Again, sorry for the delay |
@kirkscheper can you plz fix the build errors and conflicts? Otherwise it looks good to me 👍 |
30a8a49
to
0172a75
Compare
0172a75
to
223ed13
Compare
@kirkscheper any updates here? Can you fix the conflicts? |
d34e738
to
24a8f30
Compare
After quite a long wait (sorry again) this is finally done. I tested this on a bebop 2 and the sonar part works well however the ins filter was quite strange (with sonar on or off). I didn't look deeply into what was going on but the estimated velocity was always really large, even when the baro reading was relatively steady. This was made way worse when doing a geo_init (NavSetGroundReferenceHere). Anywho, this should be done now. |
sw/airborne/filters/median_filter.h
Outdated
} \ | ||
#define InitMedianFilterVect3Int(_f) { \ | ||
for (int i = 0; i < 3; i++) { \ | ||
init_median_filter_i(&(_f.mf[i]), MEDIAN_DEFAULT_SIZE); \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why not passing the size parameters in this macro as well ? same for the others of this kind.
sw/airborne/filters/median_filter.h
Outdated
{ | ||
return filter->sortData[(MEDIAN_DATASIZE) >> 1]; | ||
if (filter->size % 2 == 0){ | ||
return (filter->sortData[filter->size / 2] + filter->sortData[filter->size / 2 - 1]) / 2; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not completely happy this, because it goes again one of the property of the median filter which is that the output value is always one of the input elements. It is not the case here anymore. Not sure it is the most useful property, but still. I can see two options here:
- the size parameter is always set to the closest upper odd value
- the size parameter is only the "half-size", so the final size is (2*size+1)
…andle variable size filters
24a8f30
to
8fcaa36
Compare
…andle variable size filters (paparazzi#1909)
[modules] added module to handle the range sensors [gazebo] added rangesensor init functions to nps_gazebo [gazebo] added range modules, but gazebo is unable to find it! maybe add range sensors back to the ardrone model directly?? [modules/rangemodules + gazebo] *fixed pointer problem to range sensors * fixed unresponsive forcefield on the range sensors [fix-me-style] [misc] removed debug messages and speed up simulation Bebop firmware 4.06 seems to work fine (tested with manual flying) (paparazzi#2102) upgrades to optical flow landing module 2 (paparazzi#2087) * fix cov method 2 array initialisation for optical flow landing * add extra divide by 0 checks update default google map version to latest value update changelog [guided] add some defines to set the update flags [flight_plan] add binding to ABI messages from flight plan (paparazzi#2106) This feature allows to create an automatic binding to a ABI message while specifying the list of variable names ('_' are ignored). A local (static) variable is updated to the latest value each time a new message is received and it can be read in any flight plan instruction. Example of usage: <variables> <abi_binding name="VELOCITY_ESTIMATE" vars="_, vx, vy, vz, _"/> </variables> please not the in this example, the first and the last variable are ignored but the number of variable must match the number of fields in ABI messages description (conf/abi.xml). An extra attribute 'id' allows to set a specific sender ID (by default ABI_BROADCAST). [pprzlink] fix cast align warning [gps] example of broadcasting GPS messages between aircrafts This is used by the traffic info module to have position of surrounding aircraft at higher rate and lower latency. Based on PPRZLINK v2. Flight plan example for autopilot mode guided (paparazzi#2101) Use flight plan state machine to control a rotorcraft in guided mode. Also use ABI messages to send color detection information. [modules/range_module] fixed broken functions [abi] added sender IDS and added to abi messages [flightplan] added abi message forcefield to flight plan guided and tested out: it works! [abi] change name of sender ID [modules/sensors] added range sensor to mag_pitot_uart.c [modules/range_sensor] changed name module [range sensor] added very simple wall following (goto look at the gains a bit more, too slow) [wall following] implemented a seperate state machine that interchanges between change heading and wall distance control, because range measurement is coupled between the two and leads to instability (or no control), Verdict: actually the wall following itself works a lot better... I will try out an different approach [bug] added forward going block [bug] implemented very simple algorithm, able to handle circles but not wall corners... added imav world [gazebo] changed world file to work with paparazzi [modules/rangesensor] also changed name within code [gazebo] added external stereocamera to ardrone model [gazebo] added stereo camera to nps_fdm_gazebo.cpp and made new airframe file [conf] made new conf files to seperate all [gazebo/stereoboard] added code for edgeflow [stereocam] trying to get the edgeflow forcefield up and running [stereocam] added forcefield by stereo (not working great...) [bug] wall following around obstacle ... bit difficult to achieve... [bug] tried offset navigation tactic, but obstacle detection by stereocamera is very buggy... [bug] very simple approach for bug algorithm, but still have to implement a wrapping function for pi [bug airframe] finally got the pi wrapping working [airframe] pocket drone airframe created [flash] fix bug lisa mxs flashing [rangesensors] checked range sensors and they work! Attitude viz message and no_rc takeoff for indi (paparazzi#2108) Update firmware to newest version Made lisa mxs compatible with BMP v2 by disabling voltage sensing. This required making a seperate board file for the mxs. Hence also changed the ladylisamxs airframe file to use the new board. Also added a cx10 airframe file. Also change lisa s added outlier detector to bebop sonar and extended median filter to handle variable size filters (paparazzi#1909) use pprzlink with stereocam (paparazzi#2107) [gazebo] fixed environment [pprzlink] updated all to accomendate the new pprzlink code [stereocam] updated obstacle avoidance code [gazebo] copied things from stereocam [gazebo] added opencv and plotting to gazebo [stereoboard] tried to fix the derotation problem [changes] [stereboard] now possibility to also check old code since that is working better?? [bug] tested out and something that kind of works [changes] some changes for flight [gazebo] small changes [changes]
initial files for imav2017 [gazebo/models] added rangesensors to gazebo model [modules] added module to handle the range sensors [gazebo] added rangesensor init functions to nps_gazebo [gazebo] added range modules, but gazebo is unable to find it! maybe add range sensors back to the ardrone model directly?? [modules/rangemodules + gazebo] *fixed pointer problem to range sensors * fixed unresponsive forcefield on the range sensors [fix-me-style] [misc] removed debug messages and speed up simulation Bebop firmware 4.06 seems to work fine (tested with manual flying) (paparazzi#2102) upgrades to optical flow landing module 2 (paparazzi#2087) * fix cov method 2 array initialisation for optical flow landing * add extra divide by 0 checks update default google map version to latest value update changelog [guided] add some defines to set the update flags [flight_plan] add binding to ABI messages from flight plan (paparazzi#2106) This feature allows to create an automatic binding to a ABI message while specifying the list of variable names ('_' are ignored). A local (static) variable is updated to the latest value each time a new message is received and it can be read in any flight plan instruction. Example of usage: <variables> <abi_binding name="VELOCITY_ESTIMATE" vars="_, vx, vy, vz, _"/> </variables> please not the in this example, the first and the last variable are ignored but the number of variable must match the number of fields in ABI messages description (conf/abi.xml). An extra attribute 'id' allows to set a specific sender ID (by default ABI_BROADCAST). [pprzlink] fix cast align warning [gps] example of broadcasting GPS messages between aircrafts This is used by the traffic info module to have position of surrounding aircraft at higher rate and lower latency. Based on PPRZLINK v2. Flight plan example for autopilot mode guided (paparazzi#2101) Use flight plan state machine to control a rotorcraft in guided mode. Also use ABI messages to send color detection information. [modules/range_module] fixed broken functions [abi] added sender IDS and added to abi messages [flightplan] added abi message forcefield to flight plan guided and tested out: it works! [abi] change name of sender ID [modules/sensors] added range sensor to mag_pitot_uart.c [modules/range_sensor] changed name module [range sensor] added very simple wall following (goto look at the gains a bit more, too slow) [wall following] implemented a seperate state machine that interchanges between change heading and wall distance control, because range measurement is coupled between the two and leads to instability (or no control), Verdict: actually the wall following itself works a lot better... I will try out an different approach [bug] added forward going block [bug] implemented very simple algorithm, able to handle circles but not wall corners... added imav world [gazebo] changed world file to work with paparazzi [modules/rangesensor] also changed name within code [gazebo] added external stereocamera to ardrone model [gazebo] added stereo camera to nps_fdm_gazebo.cpp and made new airframe file [conf] made new conf files to seperate all [gazebo/stereoboard] added code for edgeflow [stereocam] trying to get the edgeflow forcefield up and running [stereocam] added forcefield by stereo (not working great...) [bug] wall following around obstacle ... bit difficult to achieve... [bug] tried offset navigation tactic, but obstacle detection by stereocamera is very buggy... [bug] very simple approach for bug algorithm, but still have to implement a wrapping function for pi [bug airframe] finally got the pi wrapping working [airframe] pocket drone airframe created [flash] fix bug lisa mxs flashing [rangesensors] checked range sensors and they work! Attitude viz message and no_rc takeoff for indi (paparazzi#2108) Update firmware to newest version Made lisa mxs compatible with BMP v2 by disabling voltage sensing. This required making a seperate board file for the mxs. Hence also changed the ladylisamxs airframe file to use the new board. Also added a cx10 airframe file. Also change lisa s added outlier detector to bebop sonar and extended median filter to handle variable size filters (paparazzi#1909) use pprzlink with stereocam (paparazzi#2107) [gazebo] fixed environment [pprzlink] updated all to accomendate the new pprzlink code [stereocam] updated obstacle avoidance code [gazebo] copied things from stereocam [gazebo] added opencv and plotting to gazebo [stereoboard] tried to fix the derotation problem [changes] [stereboard] now possibility to also check old code since that is working better?? [bug] tested out and something that kind of works [changes] some changes for flight [gazebo] small changes [changes] hff working well with stereocamera with no gps update messages to same as stereocam replace gazebo alt with pprz cmd [ins] fixed horizontal float filter bug [gazebo] removed hard hacks from gazebo for stereocam [guidance] updated flightplan and fixed the guided throttle [edgeflow] fixed distance measurement [flightplan] changes to make the pocketdrone fly [gazebo] fixed some small mistakes of the rebase and added the obstacle avoidance to pprz [misc] * Tried out new flight plan * Added stereocamera array read inside stereocam git commit -m [misc] [imav2017] *fixed obstacle detection bug *Added flight plan to pocket drone origami [flightplan] fixed constant turn bug [misc] [conf] added conf folder just for imav, and made an new imav flight plan for the obstacle field [gate] added gate fly through to imav flight plan. In simulation, it does not seem to detect the window though.. [flight plan] fix typo [flightplan] fixed bugfix in flightplan [flightplan] tried out new obstacle strategy. still need some tweeking [misc] * Tried out new flight plan, simulation kind of works but the rotation is terrible... * added snapshot to the hff [flight plan] treid out new obstacle field avoidance, actually does not work as well as the previous [flightplans] moved to different directory * added procedures for the indoor avoidance task [gate] added debugging tools in simulation for the gate detection. [misc] added snapshot position correctly to hff (not tested yet... * Gate detection now works better *NEXT STEP: derotation on lisa mxs is not workin properly. pprzlink does seem to work and I do not see issues on the simulation... what could it be updated optical flow and hff implementation reserect old vision and add dropping module Slamdunk guided navigation (#42) * ARTag markers * Add new message REMOTE_GPS_LOCAL and way to parse it Made for indoor navigation in wide space * [pprzlink] Added REMOTE_GPS_LOCAL message * New airframe + small fixes * Slamdunk GPS and avoidance Real full commit * Repush of each actual changes Fighting with Git isn't an easy thing * Undoing TUDelft merge * [Slamdunk] Last updates working blob detector blob detector updated tried to update code to run sim, not compiling yet smiulator compiling again! try to fix size divergence nans Fixed the double flow vector problem - but only before optical flow tracking all seems to be working now
This looks for large changes in sonar readings and delays sending the new measurements till the rate of change of the new measurement compared to the last sent measurement drops below a certain fixed threshold. This was found to be necessary to prevent large outliers from being propagated through the ins (the sonar is typically trusted quite heavily).
This outlier detector will also delay the propagation of true vertical height transitions for eg when flying over a table, the gradient threshold has been chosen to remove temporary outliers and not delay true transitions for very long.