Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
Loading...
Searching...
No Matches
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
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
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
74
75/* Static functions */
77 uint8_t camera_id);
78
79#if PERIODIC_TELEMETRY
105#endif
106
111{
112 // Initialize the opticflow calculation
113 for (int idx_camera = 0; idx_camera < ACTIVE_CAMERAS; idx_camera++) {
115 }
117
119#ifdef OPTICFLOW_CAMERA2
121#endif
122
123#if PERIODIC_TELEMETRY
125#endif
126
127}
128
134{
136 // Update the stabilization loops on the current calculation
137 for (int idx_camera = 0; idx_camera < ACTIVE_CAMERAS; idx_camera++) {
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) {
150 opticflow_result[idx_camera].vel_body.x,
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 }
159 }
160 }
162}
163
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
184 // Copy the result if finished
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.
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.
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.
uint16_t foo
Definition main_demo5.c:58
PRINT_CONFIG_VAR(ONELOOP_ANDI_FILT_CUTOFF)
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...
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.
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.