#include <nuttx/config.h>
#include <stdint.h>
Go to the source code of this file.
|
edge_detectf_t * | edge_detection_createf (float *boundary_data, int datalen, uint32_t keep_width, int type) |
|
void | edge_detection_deletef (edge_detectf_t *detector) |
|
int | edge_detectf (edge_detectf_t *detector, float *input, uint32_t len) |
|
int | edge_detection_resetf (edge_detectf_t *detector) |
|
edge_detects_t * | edge_detection_creates (int16_t *boundary_data, int datalen, uint32_t keep_width, int type) |
|
void | edge_detection_deletes (edge_detects_t *detector) |
|
int | edge_detects (edge_detects_t *detector, int16_t *input, uint32_t len) |
|
int | edge_detection_resets (edge_detects_t *detector) |
|