Paparazzi UAS  v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
photogrammetry_calculator.h File Reference

Add to airframe file: More...

#include "std.h"
#include "paparazzi.h"
#include "modules/nav/nav_survey_poly_osam.h"
#include "modules/nav/nav_survey_polygon.h"
+ Include dependency graph for photogrammetry_calculator.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Macros

#define photogrammetry_calculator_UpdateSideLap(X)
 
#define photogrammetry_calculator_UpdateOverLap(X)
 
#define photogrammetry_calculator_UpdateResolution(X)
 
#define photogrammetry_calculator_UpdateHeight(X)
 
#define photogrammetry_calculator_UpdateSideStep(X)
 
#define photogrammetry_calculator_UpdateTriggerStep(X)
 
#define PhotogrammetryCalculatorPolygonSurveyOsam(_WP, _COUNT)
 
#define PhotogrammetryCalculatorPolygonSurvey(_WP, _COUNT)
 

Functions

void init_photogrammetry_calculator (void)
 
void photogrammetry_calculator_update_camera2flightplan (void)
 
void photogrammetry_calculator_update_flightplan2camera (void)
 

Variables

float photogrammetry_sweep_angle
 
int photogrammetry_sidestep
 
int photogrammetry_triggerstep
 
int photogrammetry_height
 
int photogrammetry_height_min
 
int photogrammetry_height_max
 
int photogrammetry_radius_min
 
int photogrammetry_sidelap
 
int photogrammetry_overlap
 
int photogrammetry_resolution
 

Detailed Description

Add to airframe file:

  <section name="Photogrammetry" prefix="PHOTOGRAMMETRY_">
    <!-- Camera Parameters -->
    <define name="FOCAL_LENGTH" value="35" unit="mm"/>
    <define name="SENSOR_WIDTH" value="24" unit="mm"/>    <!-- In direction of the plane's wings -->
    <define name="SENSOR_HEIGHT" value="13.5" unit="mm"/> <!-- In direction of the plane's nose -->
    <define name="PIXELS_WIDTH" value="1024" unit=""/>

    <!-- Flight Safety Parameters -->
    <define name="HEIGHT_MIN" value="35" unit="m"/>
    <define name="HEIGHT_MAX" value="500" unit="m"/>
    <define name="RADIUS_MIN" value="70" unit="m"/>
  </section>

  <modules>
    <load name="photogrammetry_calculator.xml" />
  </modules>

Add to flightplan or airframe file:

    <!-- Photogrammetry Parameters: define these in the flightplan-->
    <define name="OVERLAP" value="0.5" unit="PROCENT"/>
    <define name="SIDELAP" value="0.5" unit="PROCENT"/>
    <define name="RESOLUTION" value="50" unit="mm pixel projection"/>

Add to flightplan

  <header>
#define PHOTOGRAMMETRY_SWEEP_ANGLE RadOfDeg(53)  // angle in radians from the North
#define PHOTOGRAMMETRY_OVERLAP 50              // 1-99 Procent
#define PHOTOGRAMMETRY_SIDELAP 50              // 1-99 Procent
#define PHOTOGRAMMETRY_RESOLUTION 80             // mm pixel projection size
</header>

    <block group="survey" name="Initialize Poly Survey 56789" strip_button="Survey5678" strip_icon="survey.png">
      <call fun="PhotogrammetryCalculatorPolygonSurvey(WP_5, 5)"/>
      <call fun="PolygonSurvey()"/>
    </block>
    <block group="survey" name="Initialize ADV Poly 1234 Survey" strip_button="SurveyADV" strip_icon="survey.png">
      <call fun="PhotogrammetryCalculatorPolygonSurveyADV(WP_1, 4)"/>
      <call fun="poly_survey_adv()"/>
    </block>

Definition in file photogrammetry_calculator.h.

Macro Definition Documentation

◆ photogrammetry_calculator_UpdateHeight

#define photogrammetry_calculator_UpdateHeight (   X)
Value:
{ \
photogrammetry_height = X; \
photogrammetry_calculator_update_flightplan2camera(); \
}

Definition at line 122 of file photogrammetry_calculator.h.

◆ photogrammetry_calculator_UpdateOverLap

#define photogrammetry_calculator_UpdateOverLap (   X)
Value:
{ \
photogrammetry_overlap = X; \
photogrammetry_calculator_update_camera2flightplan(); \
}

Definition at line 111 of file photogrammetry_calculator.h.

◆ photogrammetry_calculator_UpdateResolution

#define photogrammetry_calculator_UpdateResolution (   X)
Value:
{ \
photogrammetry_resolution = X; \
photogrammetry_calculator_update_camera2flightplan(); \
}

Definition at line 116 of file photogrammetry_calculator.h.

◆ photogrammetry_calculator_UpdateSideLap

#define photogrammetry_calculator_UpdateSideLap (   X)
Value:
{ \
photogrammetry_sidelap = X; \
photogrammetry_calculator_update_camera2flightplan(); \
}

Definition at line 106 of file photogrammetry_calculator.h.

◆ photogrammetry_calculator_UpdateSideStep

#define photogrammetry_calculator_UpdateSideStep (   X)
Value:
{ \
photogrammetry_sidestep = X; \
photogrammetry_calculator_update_flightplan2camera(); \
}

Definition at line 127 of file photogrammetry_calculator.h.

◆ photogrammetry_calculator_UpdateTriggerStep

#define photogrammetry_calculator_UpdateTriggerStep (   X)
Value:
{ \
photogrammetry_triggerstep = X; \
photogrammetry_calculator_update_flightplan2camera(); \
}

Definition at line 132 of file photogrammetry_calculator.h.

◆ PhotogrammetryCalculatorPolygonSurvey

#define PhotogrammetryCalculatorPolygonSurvey (   _WP,
  _COUNT 
)
Value:
{ \
nav_survey_polygon_setup((_WP), (_COUNT), DegOfRad(photogrammetry_sweep_angle), \
}
int photogrammetry_sidestep
float photogrammetry_sweep_angle
int photogrammetry_radius_min
int photogrammetry_height
int photogrammetry_triggerstep

Definition at line 146 of file photogrammetry_calculator.h.

◆ PhotogrammetryCalculatorPolygonSurveyOsam

#define PhotogrammetryCalculatorPolygonSurveyOsam (   _WP,
  _COUNT 
)
Value:
{ \
WaypointAlt(_WP) = photogrammetry_height + GROUND_ALT; \
int _ang = 90 - DegOfRad(photogrammetry_sweep_angle); \
while (_ang > 90) _ang -= 180; while (_ang < -90) _ang += 180; \
}
void nav_survey_poly_osam_setup(uint8_t EntryWP, uint8_t Size, float sw, float Orientation)
Setup polygon survey.

Definition at line 139 of file photogrammetry_calculator.h.

Function Documentation

◆ init_photogrammetry_calculator()

◆ photogrammetry_calculator_update_camera2flightplan()

void photogrammetry_calculator_update_camera2flightplan ( void  )

◆ photogrammetry_calculator_update_flightplan2camera()

void photogrammetry_calculator_update_flightplan2camera ( void  )

Variable Documentation

◆ photogrammetry_height

◆ photogrammetry_height_max

int photogrammetry_height_max
extern

◆ photogrammetry_height_min

int photogrammetry_height_min
extern

◆ photogrammetry_overlap

◆ photogrammetry_radius_min

int photogrammetry_radius_min
extern

Definition at line 64 of file photogrammetry_calculator.c.

Referenced by init_photogrammetry_calculator().

◆ photogrammetry_resolution

◆ photogrammetry_sidelap

◆ photogrammetry_sidestep

◆ photogrammetry_sweep_angle

float photogrammetry_sweep_angle
extern

Definition at line 50 of file photogrammetry_calculator.c.

Referenced by init_photogrammetry_calculator().

◆ photogrammetry_triggerstep

int photogrammetry_triggerstep
extern