pipeline.h
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//
// Created by DefTruth on 2021/8/8.
//
#ifndef LITE_AI_PIPELINE_H
#define LITE_AI_PIPELINE_H
#include "models.h"
// Pipeline namespace
namespace lite
{
namespace cv
{
namespace pipeline
{
// VideoPipeline: video demos for general models, such Face Detection
// + Face landmarks Detection | Face Attributes Analysis.
class LITE_EXPORTS VideoPipeline;
// FaceTracker: Face tracking using face detection and IoU.
class LITE_EXPORTS FaceTracker;
// ObjectTracker: Face tracking using object detection and IoU | DeepSort.
class LITE_EXPORTS ObjectTracker;
// FaceRecognizer: Face ID recognition using face detection.
// face alignment and recognition.
class LITE_EXPORTS FaceRecognizer;
// FaceAttributesAnalyser: Face Attributes Analysis using face detection,
// Face Attributes estimation.
class LITE_EXPORTS FaceAttributesAnalyser;
// VideoStyleTransfer: Style transfer for video demo.
class LITE_EXPORTS VideoStyleTransfer;
// VideoColorizer: colorization for video demo.
class LITE_EXPORTS VideoColorizer;
}
}
}
namespace lite
{
namespace cv
{
namespace pipeline
{
enum MODEL
{
FSANet = 0,
PFLD = 1,
UltraFace = 2,
AgeGoogleNet = 3,
GenderGoogleNet = 4
};
}
}
}
#endif //LITE_AI_PIPELINE_H