Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
opticflow_module.c
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014 Hann Woei Ho
3  *
4  * This file is part of Paparazzi.
5  *
6  * Paparazzi is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2, or (at your option)
9  * any later version.
10  *
11  * Paparazzi is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Paparazzi; see the file COPYING. If not, see
18  * <http://www.gnu.org/licenses/>.
19  */
20 
28 #include "opticflow_module.h"
29 
30 #include <stdio.h>
31 #include <pthread.h>
32 #include "state.h"
33 #include "modules/core/abi.h"
35 
36 #include "lib/v4l/v4l2.h"
37 #include "lib/encoding/jpeg.h"
38 #include "lib/encoding/rtp.h"
39 #include "errno.h"
40 
41 #include "cv.h"
42 #include "generated/airframe.h"
43 
45 
46 /* ABI messages sender ID */
47 #ifndef OPTICFLOW_AGL_ID
48 #define OPTICFLOW_AGL_ID ABI_BROADCAST
49 #endif
50 PRINT_CONFIG_VAR(OPTICFLOW_AGL_ID)
51 
52 #ifndef OPTICFLOW_FPS
53 #define OPTICFLOW_FPS 0
54 #endif
55 
56 #ifndef OPTICFLOW_FPS_CAMERA2
57 #define OPTICFLOW_FPS_CAMERA2 0
58 #endif
59 PRINT_CONFIG_VAR(OPTICFLOW_FPS)
60 PRINT_CONFIG_VAR(OPTICFLOW_FPS_CAMERA2)
61 
62 #ifdef OPTICFLOW_CAMERA2
63 #define ACTIVE_CAMERAS 2
64 #else
65 #define ACTIVE_CAMERAS 1
66 #endif
67 
68 /* The main opticflow variables */
71 
73 static pthread_mutex_t opticflow_mutex;
74 
75 /* Static functions */
76 struct image_t *opticflow_module_calc(struct image_t *img,
77  uint8_t camera_id);
78 
79 #if PERIODIC_TELEMETRY
86 static void opticflow_telem_send(struct transport_tx *trans, struct link_device *dev)
87 {
88  pthread_mutex_lock(&opticflow_mutex);
89  for (int idx_camera = 0; idx_camera < ACTIVE_CAMERAS; idx_camera++) {
90  if (opticflow_result[idx_camera].noise_measurement < 0.8) {
91  pprz_msg_send_OPTIC_FLOW_EST(trans, dev, AC_ID,
92  &opticflow_result[idx_camera].fps, &opticflow_result[idx_camera].corner_cnt,
93  &opticflow_result[idx_camera].tracked_cnt, &opticflow_result[idx_camera].flow_x,
94  &opticflow_result[idx_camera].flow_y, &opticflow_result[idx_camera].flow_der_x,
95  &opticflow_result[idx_camera].flow_der_y, &opticflow_result[idx_camera].vel_body.x,
96  &opticflow_result[idx_camera].vel_body.y, &opticflow_result[idx_camera].vel_body.z,
97  &opticflow_result[idx_camera].div_size,
99  &opticflow_result[idx_camera].divergence,
100  &opticflow_result[idx_camera].camera_id); // TODO: no noise measurement here...
101  }
102  }
103  pthread_mutex_unlock(&opticflow_mutex);
104 }
105 #endif
106 
111 {
112  // Initialize the opticflow calculation
113  for (int idx_camera = 0; idx_camera < ACTIVE_CAMERAS; idx_camera++) {
114  opticflow_got_result[idx_camera] = false;
115  }
117 
118  cv_add_to_device(&OPTICFLOW_CAMERA, opticflow_module_calc, OPTICFLOW_FPS, 0);
119 #ifdef OPTICFLOW_CAMERA2
121 #endif
122 
123 #if PERIODIC_TELEMETRY
125 #endif
126 
127 }
128 
134 {
135  pthread_mutex_lock(&opticflow_mutex);
136  // Update the stabilization loops on the current calculation
137  for (int idx_camera = 0; idx_camera < ACTIVE_CAMERAS; idx_camera++) {
138  if (opticflow_got_result[idx_camera]) {
139  uint32_t now_ts = get_sys_time_usec();
140  AbiSendMsgOPTICAL_FLOW(FLOW_OPTICFLOW_ID + idx_camera, now_ts,
141  opticflow_result[idx_camera].flow_x,
142  opticflow_result[idx_camera].flow_y,
143  opticflow_result[idx_camera].flow_der_x,
144  opticflow_result[idx_camera].flow_der_y,
145  opticflow_result[idx_camera].noise_measurement,
146  opticflow_result[idx_camera].div_size);
147  //TODO Find an appropriate quality measure for the noise model in the state filter, for now it is tracked_cnt
148  if (opticflow_result[idx_camera].noise_measurement < 0.8) {
149  AbiSendMsgVELOCITY_ESTIMATE(VEL_OPTICFLOW_ID + idx_camera, now_ts,
150  opticflow_result[idx_camera].vel_body.x,
151  opticflow_result[idx_camera].vel_body.y,
152  0.0f, //opticflow_result.vel_body.z,
155  -1.0f //opticflow_result.noise_measurement // negative value disables filter updates with OF-based vertical velocity.
156  );
157  }
158  opticflow_got_result[idx_camera] = false;
159  }
160  }
161  pthread_mutex_unlock(&opticflow_mutex);
162 }
163 
172 struct image_t *opticflow_module_calc(struct image_t *img, uint8_t camera_id)
173 {
174  // Copy the state
175  // TODO : put accelerometer values at pose of img timestamp
176  //struct opticflow_state_t temp_state;
177  struct pose_t pose = get_rotation_at_timestamp(img->pprz_ts);
178  img->eulers = pose.eulers;
179 
180  // Do the optical flow calculation
181  static struct opticflow_result_t
182  temp_result[ACTIVE_CAMERAS]; // static so that the number of corners is kept between frames
183  if (opticflow_calc_frame(&opticflow[camera_id], img, &temp_result[camera_id])) {
184  // Copy the result if finished
185  pthread_mutex_lock(&opticflow_mutex);
186  opticflow_result[camera_id] = temp_result[camera_id];
188  pthread_mutex_unlock(&opticflow_mutex);
189  }
190  return img;
191 }
Main include for ABI (AirBorneInterface).
#define VEL_OPTICFLOW_ID
#define FLOW_OPTICFLOW_ID
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
Definition: sys_time_arch.c:71
struct video_listener * cv_add_to_device(struct video_config_t *device, cv_function func, uint16_t fps, uint8_t id)
Definition: cv.c:46
Computer vision framework for onboard processing.
uint32_t pprz_ts
The timestamp in us since system startup.
Definition: image.h:50
struct FloatEulers eulers
Euler Angles at time of image.
Definition: image.h:49
Definition: image.h:44
float div_size
Divergence as determined with the size_divergence script.
float surface_roughness
Surface roughness as determined with a linear optical flow fit.
float divergence
Divergence as determined with a linear flow fit.
float noise_measurement
noise of measurement, for state filter
struct FloatVect3 vel_body
The velocity in body frame (m/s) with X positive to the front of the aircraft, Y positive to the righ...
uint8_t camera_id
Camera id as passed to cv_add_to_device.
Encode images with the use of the JPEG encoding.
void opticflow_calc_init(struct opticflow_t opticflow[])
Initialize the opticflow calculator.
bool opticflow_calc_frame(struct opticflow_t *opticflow, struct image_t *img, struct opticflow_result_t *result)
Run the optical flow on a new image frame.
static struct opticflow_result_t opticflow_result[ACTIVE_CAMERAS]
The opticflow result.
static pthread_mutex_t opticflow_mutex
Mutex lock fo thread safety.
#define OPTICFLOW_AGL_ID
Default sonar/agl to use in opticflow visual_estimator.
#define OPTICFLOW_FPS_CAMERA2
Default FPS (zero means run at camera fps)
void opticflow_module_init(void)
Initialize the optical flow module for the bottom camera.
static void opticflow_telem_send(struct transport_tx *trans, struct link_device *dev)
Send optical flow telemetry information.
struct opticflow_t opticflow[ACTIVE_CAMERAS]
Opticflow calculations.
uint16_t fps_OF
void opticflow_module_run(void)
Update the optical flow state for the calculation thread and update the stabilization loops with the ...
static bool opticflow_got_result[ACTIVE_CAMERAS]
When we have an optical flow calculation.
struct image_t * opticflow_module_calc(struct image_t *img, uint8_t camera_id)
The main optical flow calculation thread.
#define OPTICFLOW_FPS
Default FPS (zero means run at camera fps)
#define ACTIVE_CAMERAS
optical-flow calculation for Parrot Drones
struct pose_t get_rotation_at_timestamp(uint32_t timestamp)
Given a pprz timestamp in used (obtained with get_sys_time_usec) we return the pose in FloatEulers cl...
Definition: pose_history.c:53
struct FloatEulers eulers
Definition: pose_history.h:33
Encodes a video stream with RTP Format 26 (Motion JPEG)
API to get/set the generic vehicle states.
static const struct usb_device_descriptor dev
Definition: usb_ser_hw.c:74
int8_t register_periodic_telemetry(struct periodic_telemetry *_pt, uint8_t _id, telemetry_cb _cb)
Register a telemetry callback function.
Definition: telemetry.c:51
Periodic telemetry system header (includes downlink utility and generated code).
#define DefaultPeriodic
Set default periodic telemetry.
Definition: telemetry.h:66
Capture images from a V4L2 device (Video for Linux 2)
unsigned short uint16_t
Typedef defining 16 bit unsigned short type.
Definition: vl53l1_types.h:88
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
Definition: vl53l1_types.h:78
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.
Definition: vl53l1_types.h:98