Paparazzi UAS
v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
|
Takes an image and represents the texture and colors in the image with a texton histogram. More...
#include <stdint.h>
Go to the source code of this file.
Functions | |
void | DictionaryTrainingYUV (uint8_t *frame, uint16_t width, uint16_t height) |
Function that performs one pass for dictionary training. More... | |
void | DistributionExtraction (uint8_t *frame, uint16_t width, uint16_t height) |
Function that extracts a texton histogram from an image. More... | |
void | save_texton_dictionary (void) |
Save the texton dictionary. More... | |
void | load_texton_dictionary (void) |
Load a texton dictionary. More... | |
void | textons_init (void) |
Initialize. More... | |
void | textons_stop (void) |
float | get_entropy (float *p_dist, int D) |
Function that calculates a base-2 Shannon entropy for a probability distribution. More... | |
Takes an image and represents the texture and colors in the image with a texton histogram.
A texton is a cluster centroid in a space populated by image patches. First, this code learns or loads a texton dictionary. Then, for each incoming image, patches are sampled from the image, compared to textons in the dictionary, and the closest texton is identified, augmenting the corresponding bin in the texton histogram.
Definition in file textons.h.
Function that performs one pass for dictionary training.
It extracts samples from an image, finds the closest texton and moves it towards the sample.
[in] | frame* | The YUV image data |
[in] | width | The width of the image |
[in] | height | The height of the image |
Definition at line 227 of file textons.c.
References alpha, alpha_uint, image_t::buf, dictionary, dictionary_initialized, frame, learned_samples, n_samples_image, n_textons, patch_size, s, and image_t::w.
Referenced by texton_func().
Function that extracts a texton histogram from an image.
[in] | frame* | The YUV image data |
[in] | width | The width of the image |
[in] | height | The height of the image |
Definition at line 372 of file textons.c.
References border_height, border_width, image_t::buf, dictionary, frame, FULL_SAMPLING, n_samples_image, n_textons, patch_size, and texton_distribution.
Referenced by texton_func().
float get_entropy | ( | float * | p_dist, |
int | D | ||
) |
void load_texton_dictionary | ( | void | ) |
Load a texton dictionary.
Definition at line 532 of file textons.c.
References dictionary, dictionary_initialized, dictionary_logger, dictionary_number, dictionary_ready, learned_samples, load_dictionary, n_textons, patch_size, and TEXTONS_DICTIONARY_PATH.
Referenced by texton_func().
void save_texton_dictionary | ( | void | ) |
Save the texton dictionary.
Definition at line 501 of file textons.c.
References dictionary, dictionary_logger, dictionary_number, n_textons, patch_size, and TEXTONS_DICTIONARY_PATH.
Referenced by texton_func().
void textons_init | ( | void | ) |
Initialize.
Definition at line 562 of file textons.c.
References cv_add_to_device(), dictionary, dictionary_initialized, dictionary_ready, learned_samples, listener, MAX_N_TEXTONS, patch_size, texton_distribution, texton_func(), TEXTONS_FPS, and image_t::w.
void textons_stop | ( | void | ) |
Definition at line 583 of file textons.c.
References dictionary, and texton_distribution.
|
extern |
Definition at line 133 of file textons.c.
Referenced by ahrs_fc_propagate(), ahrs_mlkf_update_accel(), baro_cb(), compute_1e_filter_lp(), compute_ground_speed(), DictionaryTrainingYUV(), gvf_ellipse_info(), gvf_ellipse_wp(), gvf_ellipse_XY(), gvf_line_info(), gvf_parametric_2D_trefoil_wp(), gvf_parametric_2D_trefoil_XY(), gvf_segment_loop_XY1_XY2(), gvf_sin_info(), gvf_sin_wp1_wp2(), gvf_sin_wp_alpha(), gvf_sin_XY_alpha(), indi_apply_compensator_filters(), ins_float_invariant_update_baro(), mtostk_apply_polynomial_temp(), nav_cube_setup(), nav_hybrid_circle(), nps_fdm_run_step(), out_of_segment_area(), process_new_point_rosette(), propagate_ref(), snav_init(), texton_func(), update_target_point(), and wls_alloc().
|
extern |
Definition at line 121 of file textons.c.
Referenced by DictionaryTrainingYUV(), and texton_func().
|
extern |
Definition at line 128 of file textons.c.
Referenced by DistributionExtraction().
|
extern |
Definition at line 127 of file textons.c.
Referenced by DistributionExtraction().
|
extern |
Definition at line 39 of file textons.c.
Referenced by DictionaryTrainingYUV(), DistributionExtraction(), load_texton_dictionary(), save_texton_dictionary(), textons_init(), and textons_stop().
|
extern |
Definition at line 41 of file textons.c.
Referenced by DictionaryTrainingYUV(), load_texton_dictionary(), texton_func(), and textons_init().
|
extern |
Definition at line 129 of file textons.c.
Referenced by load_texton_dictionary(), and save_texton_dictionary().
|
extern |
Definition at line 132 of file textons.c.
Referenced by load_texton_dictionary(), texton_func(), and textons_init().
|
extern |
Definition at line 126 of file textons.c.
Referenced by DistributionExtraction().
|
extern |
Definition at line 40 of file textons.c.
Referenced by DictionaryTrainingYUV(), load_texton_dictionary(), texton_func(), and textons_init().
|
extern |
Definition at line 119 of file textons.c.
Referenced by load_texton_dictionary(), and texton_func().
|
extern |
Definition at line 124 of file textons.c.
Referenced by texton_func().
|
extern |
Definition at line 125 of file textons.c.
Referenced by DictionaryTrainingYUV(), and DistributionExtraction().
|
extern |
Definition at line 122 of file textons.c.
Referenced by DictionaryTrainingYUV(), DistributionExtraction(), learn_from_file(), load_texton_dictionary(), load_texton_distribution(), load_weights(), optical_flow_landing_init(), predict_gain(), recursive_least_squares_batch(), save_texton_dictionary(), save_texton_distribution(), and save_weights().
|
extern |
Definition at line 123 of file textons.c.
Referenced by DictionaryTrainingYUV(), DistributionExtraction(), load_texton_dictionary(), opticFlowLK(), opticFlowLK_flat(), save_texton_dictionary(), texton_func(), and textons_init().
|
extern |
Definition at line 120 of file textons.c.
Referenced by texton_func().
|
extern |
Definition at line 118 of file textons.c.
Referenced by texton_func().
|
extern |
Definition at line 42 of file textons.c.
Referenced by DistributionExtraction(), save_texton_distribution(), textons_init(), textons_stop(), and vertical_ctrl_module_run().