2011-04-30 05:29:28 -03:00
# ifndef AP_OPTICALFLOW_H
# define AP_OPTICALFLOW_H
/*
AP_OpticalFlow . cpp - OpticalFlow Base Class for Ardupilot Mega
Code by Randy Mackay . DIYDrones . com
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation ; either
version 2.1 of the License , or ( at your option ) any later version .
Methods :
init ( ) : initializate sensor and library .
read : reads latest value from OpticalFlow and stores values in x , y , surface_quality parameter
read_register ( ) : reads a value from the sensor ( will be sensor specific )
write_register ( ) : writes a value to one of the sensor ' s register ( will be sensor specific )
*/
2012-02-18 05:09:40 -04:00
# include <FastSerial.h>
2011-05-11 09:49:19 -03:00
# include <AP_Math.h>
2011-09-16 23:24:57 -03:00
# include <AP_Common.h>
2011-04-30 05:29:28 -03:00
2011-05-11 09:49:19 -03:00
// standard rotation matrices
# define AP_OPTICALFLOW_ROTATION_NONE Matrix3f(1, 0, 0, 0, 1, 0, 0 ,0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_45 Matrix3f(0.70710678, -0.70710678, 0, 0.70710678, 0.70710678, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_90 Matrix3f(0, -1, 0, 1, 0, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_135 Matrix3f(-0.70710678, -0.70710678, 0, 0.70710678, -0.70710678, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_180 Matrix3f(-1, 0, 0, 0, -1, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_225 Matrix3f(-0.70710678, 0.70710678, 0, -0.70710678, -0.70710678, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_270 Matrix3f(0, 1, 0, -1, 0, 0, 0, 0, 1)
# define AP_OPTICALFLOW_ROTATION_YAW_315 Matrix3f(0.70710678, 0.70710678, 0, -0.70710678, 0.70710678, 0, 0, 0, 1)
2011-04-30 05:29:28 -03:00
class AP_OpticalFlow
{
2011-09-16 23:24:57 -03:00
public :
2011-05-11 09:49:19 -03:00
int raw_dx , raw_dy ; // raw sensor change in x and y position (i.e. unrotated)
2011-04-30 05:29:28 -03:00
int surface_quality ; // image quality (below 15 you really can't trust the x,y values returned)
2011-05-11 09:49:19 -03:00
int x , y ; // total x,y position
int dx , dy ; // rotated change in x and y position
2011-09-16 23:24:57 -03:00
float vlon , vlat ; // position as offsets from original position
2011-05-11 09:49:19 -03:00
unsigned long last_update ; // millis() time of last update
float field_of_view ; // field of view in Radians
float scaler ; // number returned from sensor when moved one pixel
int num_pixels ; // number of pixels of resolution in the sensor
2011-05-22 11:44:51 -03:00
// temp variables - delete me!
float exp_change_x , exp_change_y ;
float change_x , change_y ;
2011-09-16 23:24:57 -03:00
float x_cm , y_cm ;
2011-12-29 23:06:31 -04:00
AP_OpticalFlow ( ) { _sensor = this ; } ;
~ AP_OpticalFlow ( ) { _sensor = NULL ; } ;
2011-05-11 09:49:19 -03:00
virtual bool init ( bool initCommAPI = true ) ; // parameter controls whether I2C/SPI interface is initialised (set to false if other devices are on the I2C/SPI bus and have already initialised the interface)
2011-04-30 05:29:28 -03:00
virtual byte read_register ( byte address ) ;
virtual void write_register ( byte address , byte value ) ;
2011-05-11 09:49:19 -03:00
virtual void set_orientation ( const Matrix3f & rotation_matrix ) ; // Rotation vector to transform sensor readings to the body frame.
virtual void set_field_of_view ( const float fov ) { field_of_view = fov ; update_conversion_factors ( ) ; } ; // sets field of view of sensor
2011-12-29 23:06:31 -04:00
static void read ( uint32_t ) { if ( _sensor ! = NULL ) _sensor - > update ( ) ; } ; // call to update all attached sensors
virtual bool update ( ) ; // read latest values from sensor and fill in x,y and totals. returns true on success
2011-09-16 23:24:57 -03:00
virtual void update_position ( float roll , float pitch , float cos_yaw_x , float sin_yaw_y , float altitude ) ; // updates internal lon and lat with estimation based on optical flow
2011-12-29 23:06:31 -04:00
protected :
static AP_OpticalFlow * _sensor ; // pointer to the last instantiated optical flow sensor. Will be turned into a table if we ever add support for more than one sensor
2011-05-11 09:49:19 -03:00
Matrix3f _orientation_matrix ;
float conv_factor ; // multiply this number by altitude and pixel change to get horizontal move (in same units as altitude)
float radians_to_pixels ;
2011-09-17 00:38:18 -03:00
float _last_roll , _last_pitch , _last_altitude ;
2011-05-11 09:49:19 -03:00
virtual void apply_orientation_matrix ( ) ; // rotate raw values to arrive at final x,y,dx and dy values
virtual void update_conversion_factors ( ) ;
2011-04-30 05:29:28 -03:00
} ;
2011-09-17 00:38:18 -03:00
# include "AP_OpticalFlow_ADNS3080.h"
2011-04-30 05:29:28 -03:00
# endif