FFmpeg
|
#include "detection_bbox.h"
Go to the source code of this file.
Functions | |
AVDetectionBBoxHeader * | av_detection_bbox_alloc (uint32_t nb_bboxes, size_t *out_size) |
Allocates memory for AVDetectionBBoxHeader, plus an array of. More... | |
AVDetectionBBoxHeader * | av_detection_bbox_create_side_data (AVFrame *frame, uint32_t nb_bboxes) |
Allocates memory for AVDetectionBBoxHeader, plus an array of. More... | |
AVDetectionBBoxHeader* av_detection_bbox_alloc | ( | uint32_t | nb_bboxes, |
size_t * | out_size | ||
) |
Allocates memory for AVDetectionBBoxHeader, plus an array of.
AVDetectionBBox, and initializes the variables. Can be freed with a normal av_free() call.
nb_bboxes | number of AVDetectionBBox structures to allocate |
out_size | if non-NULL, the size in bytes of the resulting data array is written here. |
Definition at line 21 of file detection_bbox.c.
Referenced by av_detection_bbox_create_side_data().
AVDetectionBBoxHeader* av_detection_bbox_create_side_data | ( | AVFrame * | frame, |
uint32_t | nb_bboxes | ||
) |
Allocates memory for AVDetectionBBoxHeader, plus an array of.
AVDetectionBBox, in the given AVFrame
as AVFrameSideData of type AV_FRAME_DATA_DETECTION_BBOXES and initializes the variables.
Definition at line 51 of file detection_bbox.c.
Referenced by dnn_detect_post_proc_ov(), and dnn_detect_post_proc_tf().