FFmpeg
Loading...
Searching...
No Matches
vf_dnn_classify.c
Go to the documentation of this file.
1/*
2 * This file is part of FFmpeg.
3 *
4 * FFmpeg is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * FFmpeg is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with FFmpeg; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19/**
20 * @file
21 * implementing an classification filter using deep learning networks.
22 */
23
24#include "libavutil/file_open.h"
25#include "libavutil/mem.h"
26#include "libavutil/opt.h"
27#include "filters.h"
28#include "dnn_filter_common.h"
29#include "video.h"
30#include "libavutil/time.h"
31#include "libavutil/avstring.h"
33
43
44#define OFFSET(x) offsetof(DnnClassifyContext, dnnctx.x)
45#define OFFSET2(x) offsetof(DnnClassifyContext, x)
46#define FLAGS AV_OPT_FLAG_FILTERING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
48 { "dnn_backend", "DNN backend", OFFSET(backend_type), AV_OPT_TYPE_INT, { .i64 = DNN_OV }, INT_MIN, INT_MAX, FLAGS, .unit = "backend" },
49#if (CONFIG_LIBOPENVINO == 1)
50 { "openvino", "openvino backend flag", 0, AV_OPT_TYPE_CONST, { .i64 = DNN_OV }, 0, 0, FLAGS, .unit = "backend" },
51#endif
52 { "confidence", "threshold of confidence", OFFSET2(confidence), AV_OPT_TYPE_FLOAT, { .dbl = 0.5 }, 0, 1, FLAGS},
53 { "labels", "path to labels file", OFFSET2(labels_filename), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
54 { "target", "which one to be classified", OFFSET2(target), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, FLAGS },
55 { NULL }
56};
57
59
60static int dnn_classify_post_proc(AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx)
61{
63 float conf_threshold = ctx->confidence;
65 AVDetectionBBox *bbox;
66 float *classifications;
67 uint32_t label_id;
68 float confidence;
70 int output_size = output->dims[3] * output->dims[2] * output->dims[1];
71 if (output_size <= 0) {
72 return -1;
73 }
74
76 if (!sd) {
77 av_log(filter_ctx, AV_LOG_ERROR, "Cannot get side data in dnn_classify_post_proc\n");
78 return -1;
79 }
81
82 if (bbox_index == 0) {
83 av_strlcat(header->source, ", ", sizeof(header->source));
84 av_strlcat(header->source, ctx->dnnctx.model_filename, sizeof(header->source));
85 }
86
87 classifications = output->data;
88 label_id = 0;
89 confidence= classifications[0];
90 for (int i = 1; i < output_size; i++) {
91 if (classifications[i] > confidence) {
92 label_id = i;
93 confidence= classifications[i];
94 }
95 }
96
97 if (confidence < conf_threshold) {
98 return 0;
99 }
100
101 bbox = av_get_detection_bbox(header, bbox_index);
102 bbox->classify_confidences[bbox->classify_count] = av_make_q((int)(confidence * 10000), 10000);
103
104 if (ctx->labels && label_id < ctx->label_count) {
105 av_strlcpy(bbox->classify_labels[bbox->classify_count], ctx->labels[label_id], sizeof(bbox->classify_labels[bbox->classify_count]));
106 } else {
107 snprintf(bbox->classify_labels[bbox->classify_count], sizeof(bbox->classify_labels[bbox->classify_count]), "%d", label_id);
108 }
109
110 bbox->classify_count++;
111
112 return 0;
113}
114
116{
117 for (int i = 0; i < ctx->label_count; i++) {
118 av_freep(&ctx->labels[i]);
119 }
120 ctx->label_count = 0;
121 av_freep(&ctx->labels);
122}
123
125{
126 int line_len;
127 FILE *file;
128 DnnClassifyContext *ctx = context->priv;
129
130 file = avpriv_fopen_utf8(ctx->labels_filename, "r");
131 if (!file){
132 av_log(context, AV_LOG_ERROR, "failed to open file %s\n", ctx->labels_filename);
133 return AVERROR(EINVAL);
134 }
135
136 while (!feof(file)) {
137 char *label;
138 char buf[256];
139 if (!fgets(buf, 256, file)) {
140 break;
141 }
142
143 line_len = strlen(buf);
144 while (line_len) {
145 int i = line_len - 1;
146 if (buf[i] == '\n' || buf[i] == '\r' || buf[i] == ' ') {
147 buf[i] = '\0';
148 line_len--;
149 } else {
150 break;
151 }
152 }
153
154 if (line_len == 0) // empty line
155 continue;
156
158 av_log(context, AV_LOG_ERROR, "label %s too long\n", buf);
159 fclose(file);
160 return AVERROR(EINVAL);
161 }
162
163 label = av_strdup(buf);
164 if (!label) {
165 av_log(context, AV_LOG_ERROR, "failed to allocate memory for label %s\n", buf);
166 fclose(file);
167 return AVERROR(ENOMEM);
168 }
169
170 if (av_dynarray_add_nofree(&ctx->labels, &ctx->label_count, label) < 0) {
171 av_log(context, AV_LOG_ERROR, "failed to do av_dynarray_add\n");
172 fclose(file);
173 av_freep(&label);
174 return AVERROR(ENOMEM);
175 }
176 }
177
178 fclose(file);
179 return 0;
180}
181
183{
184 DnnClassifyContext *ctx = context->priv;
185 int ret = ff_dnn_init(&ctx->dnnctx, DFT_ANALYTICS_CLASSIFY, context);
186 if (ret < 0)
187 return ret;
189
190 if (ctx->labels_filename) {
191 return read_classify_label_file(context);
192 }
193 return 0;
194}
195
204
206{
207 DnnClassifyContext *ctx = outlink->src->priv;
208 int ret;
209 DNNAsyncStatusType async_state;
210
211 ret = ff_dnn_flush(&ctx->dnnctx);
212 if (ret != 0) {
213 return -1;
214 }
215
216 do {
217 AVFrame *in_frame = NULL;
218 AVFrame *out_frame = NULL;
219 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame);
220 if (async_state == DAST_SUCCESS) {
221 ret = ff_filter_frame(outlink, in_frame);
222 if (ret < 0)
223 return ret;
224 if (out_pts)
225 *out_pts = in_frame->pts + pts;
226 }
227 av_usleep(5000);
228 } while (async_state >= DAST_NOT_READY);
229
230 return 0;
231}
232
234{
235 AVFilterLink *inlink = filter_ctx->inputs[0];
236 AVFilterLink *outlink = filter_ctx->outputs[0];
238 AVFrame *in = NULL;
239 int64_t pts;
240 int ret, status;
241 int got_frame = 0;
242 int async_state;
243
244 FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink);
245
246 do {
247 // drain all input frames
248 ret = ff_inlink_consume_frame(inlink, &in);
249 if (ret < 0)
250 return ret;
251 if (ret > 0) {
252 if (ff_dnn_execute_model_classification(&ctx->dnnctx, in, NULL, ctx->target) != 0) {
253 return AVERROR(EIO);
254 }
255 }
256 } while (ret > 0);
257
258 // drain all processed frames
259 do {
260 AVFrame *in_frame = NULL;
261 AVFrame *out_frame = NULL;
262 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame);
263 if (async_state == DAST_SUCCESS) {
264 ret = ff_filter_frame(outlink, in_frame);
265 if (ret < 0)
266 return ret;
267 got_frame = 1;
268 }
269 } while (async_state == DAST_SUCCESS);
270
271 // if frame got, schedule to next filter
272 if (got_frame)
273 return 0;
274
275 if (ff_inlink_acknowledge_status(inlink, &status, &pts)) {
276 if (status == AVERROR_EOF) {
277 int64_t out_pts = pts;
278 ret = dnn_classify_flush_frame(outlink, pts, &out_pts);
279 ff_outlink_set_status(outlink, status, out_pts);
280 return ret;
281 }
282 }
283
284 FF_FILTER_FORWARD_WANTED(outlink, inlink);
285
286 return 0;
287}
288
290{
291 DnnClassifyContext *ctx = context->priv;
292 ff_dnn_uninit(&ctx->dnnctx);
294}
295
297 .p.name = "dnn_classify",
298 .p.description = NULL_IF_CONFIG_SMALL("Apply DNN classify filter to the input."),
299 .p.priv_class = &dnn_classify_class,
300 .priv_size = sizeof(DnnClassifyContext),
307 .activate = dnn_classify_activate,
308};
const FFFilter ff_vf_dnn_classify
static AVFormatContext * ctx
int ff_inlink_acknowledge_status(AVFilterLink *link, int *rstatus, int64_t *rpts)
Test and acknowledge the change of status on the link.
Definition avfilter.c:1467
int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
Send a frame of data to the next filter.
Definition avfilter.c:1068
int ff_inlink_consume_frame(AVFilterLink *link, AVFrame **rframe)
Take a frame from the link's FIFO and update the link's stats.
Definition avfilter.c:1520
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
#define FLAGS
Definition cmdutils.c:598
#define NULL
Definition coverity.c:32
long long int64_t
Definition coverity.c:34
static AVFrame * frame
#define AV_DETECTION_BBOX_LABEL_NAME_MAX_SIZE
static av_always_inline AVDetectionBBox * av_get_detection_bbox(const AVDetectionBBoxHeader *header, unsigned int idx)
void ff_dnn_uninit(DnnContext *ctx)
DNNAsyncStatusType ff_dnn_get_result(DnnContext *ctx, AVFrame **in_frame, AVFrame **out_frame)
int ff_dnn_set_classify_post_proc(DnnContext *ctx, ClassifyPostProc post_proc)
int ff_dnn_init(DnnContext *ctx, DNNFunctionType func_type, AVFilterContext *filter_ctx)
int ff_dnn_flush(DnnContext *ctx)
int ff_dnn_filter_init_child_class(AVFilterContext *filter)
int ff_dnn_execute_model_classification(DnnContext *ctx, AVFrame *in_frame, AVFrame *out_frame, const char *target)
common functions for the dnn based filters
#define AVFILTER_DNN_DEFINE_CLASS(fname, backend_mask)
DNNAsyncStatusType
@ DAST_NOT_READY
@ DAST_SUCCESS
@ DNN_OV
@ DFT_ANALYTICS_CLASSIFY
int(* init)(AVBSFContext *ctx)
Definition dts2pts.c:608
@ AV_OPT_TYPE_CONST
Special option type for declaring named constants.
Definition opt.h:298
@ AV_OPT_TYPE_INT
Underlying C type is int.
Definition opt.h:258
@ AV_OPT_TYPE_FLOAT
Underlying C type is float.
Definition opt.h:270
@ AV_OPT_TYPE_STRING
Underlying C type is a uint8_t* that is either NULL or points to a C string allocated with the av_mal...
Definition opt.h:275
#define AVERROR_EOF
End of file.
Definition error.h:57
#define AVERROR(e)
Definition error.h:45
AVFrameSideData * av_frame_get_side_data(const AVFrame *frame, enum AVFrameSideDataType type)
Definition frame.c:659
@ AV_FRAME_DATA_DETECTION_BBOXES
Bounding boxes for object detection and classification, as described by AVDetectionBBoxHeader.
Definition frame.h:194
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
static AVRational av_make_q(int num, int den)
Create an AVRational.
Definition rational.h:71
int av_dynarray_add_nofree(void *tab_ptr, int *nb_ptr, void *elem)
Add an element to a dynamic array.
Definition mem.c:313
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes,...
Definition avstring.c:95
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
Definition avstring.c:85
static av_cold void uninit(AVBitStreamFilterContext *ctx)
#define FILTER_INPUTS(array)
Definition filters.h:264
#define FILTER_OUTPUTS(array)
Definition filters.h:265
#define FF_FILTER_FORWARD_WANTED(outlink, inlink)
Forward the frame_wanted_out flag from an output link to an input link.
Definition filters.h:694
#define FILTER_PIXFMTS_ARRAY(array)
Definition filters.h:244
static void ff_outlink_set_status(AVFilterLink *link, int status, int64_t pts)
Set the status field of a link from the source filter.
Definition filters.h:629
#define FF_FILTER_FORWARD_STATUS_BACK(outlink, inlink)
Forward the status on an output link to an input link.
Definition filters.h:639
#define av_cold
Definition attributes.h:117
FILE * avpriv_fopen_utf8(const char *path, const char *mode)
Open a file using a UTF-8 filename.
Definition file_open.c:160
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition internal.h:88
static enum AVPixelFormat pix_fmts[]
Definition libkvazaar.c:296
Memory handling functions.
#define av_strdup(s)
Definition ops_static.c:55
AVOptions.
#define AV_PIX_FMT_GRAYF32
Definition pixfmt.h:588
AVPixelFormat
Pixel format.
Definition pixfmt.h:71
@ AV_PIX_FMT_NV12
planar YUV 4:2:0, 12bpp, 1 plane for Y and 1 plane for the UV components, which are interleaved (firs...
Definition pixfmt.h:96
@ AV_PIX_FMT_NONE
Definition pixfmt.h:72
@ AV_PIX_FMT_RGB24
packed RGB 8:8:8, 24bpp, RGBRGB...
Definition pixfmt.h:75
@ AV_PIX_FMT_YUV420P
planar YUV 4:2:0, 12bpp, (1 Cr & Cb sample per 2x2 Y samples)
Definition pixfmt.h:73
@ AV_PIX_FMT_YUV422P
planar YUV 4:2:2, 16bpp, (1 Cr & Cb sample per 2x1 Y samples)
Definition pixfmt.h:77
@ AV_PIX_FMT_GRAY8
Y , 8bpp.
Definition pixfmt.h:81
@ AV_PIX_FMT_YUV410P
planar YUV 4:1:0, 9bpp, (1 Cr & Cb sample per 4x4 Y samples)
Definition pixfmt.h:79
@ AV_PIX_FMT_YUV411P
planar YUV 4:1:1, 12bpp, (1 Cr & Cb sample per 4x1 Y samples)
Definition pixfmt.h:80
@ AV_PIX_FMT_YUV444P
planar YUV 4:4:4, 24bpp, (1 Cr & Cb sample per 1x1 Y samples)
Definition pixfmt.h:78
@ AV_PIX_FMT_BGR24
packed RGB 8:8:8, 24bpp, BGRBGR...
Definition pixfmt.h:76
static const uint8_t header[24]
Definition sdr2.c:68
#define snprintf
Definition snprintf.h:34
static av_cold int preinit(AVBitStreamFilterContext *ctx)
Definition source.c:137
Describe the class of an AVClass context structure.
Definition log.h:76
char classify_labels[AV_NUM_DETECTION_BBOX_CLASSIFY][AV_DETECTION_BBOX_LABEL_NAME_MAX_SIZE]
AVRational classify_confidences[AV_NUM_DETECTION_BBOX_CLASSIFY]
uint32_t classify_count
An instance of a filter.
Definition avfilter.h:273
void * priv
private data for use by the filter
Definition avfilter.h:288
Structure to hold side data for an AVFrame.
Definition frame.h:327
uint8_t * data
Definition frame.h:329
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
int64_t pts
Presentation timestamp in time_base units (time when frame should be shown to user).
Definition frame.h:574
AVOption.
Definition opt.h:428
int dims[4]
void * data
#define av_freep(p)
#define av_log(a,...)
int av_usleep(unsigned usec)
Sleep for a period of time.
Definition time.c:93
static FilteringContext * filter_ctx
Definition transcode.c:52
static int64_t pts
static int read_classify_label_file(AVFilterContext *context)
static av_cold void dnn_classify_uninit(AVFilterContext *context)
static void free_classify_labels(DnnClassifyContext *ctx)
static int dnn_classify_activate(AVFilterContext *filter_ctx)
static const AVOption dnn_classify_options[]
#define OFFSET(x)
static int dnn_classify_flush_frame(AVFilterLink *outlink, int64_t pts, int64_t *out_pts)
#define OFFSET2(x)
static av_cold int dnn_classify_init(AVFilterContext *context)
static int dnn_classify_post_proc(AVFrame *frame, DNNData *output, uint32_t bbox_index, AVFilterContext *filter_ctx)
const AVFilterPad ff_video_default_filterpad[1]
An AVFilterPad array whose only entry has name "default" and is of type AVMEDIA_TYPE_VIDEO.
Definition video.c:37