-
Notifications
You must be signed in to change notification settings - Fork 81
/
AgeAndGenderRecognition.vue
175 lines (159 loc) · 4.69 KB
/
AgeAndGenderRecognition.vue
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<script setup>
import * as faceapi from "@vladmandic/face-api";
import { onMounted, reactive, watch } from "vue";
/**属性状态 */
const state = reactive({
/**初始化模型加载 */
netsLoadModel: true,
/**算法模型 */
netsType: "ssdMobilenetv1",
/**模型参数 */
netsOptions: {
ssdMobilenetv1: undefined,
tinyFaceDetector: undefined,
},
/**box面框分值, landmark面部轮廓, ageGender年龄性别 */
draws: ["box", "ageGender"],
/**图片元素 */
imgEl: null,
/**画布图层元素 */
canvasEl: null,
});
/**初始化模型加载 */
async function fnLoadModel() {
// 模型文件访问路径
const modelsPath = `/models`;
// 面部轮廓模型
await faceapi.nets.faceLandmark68Net.load(modelsPath);
// 年龄性别模型
await faceapi.nets.ageGenderNet.load(modelsPath);
// 模型参数-ssdMobilenetv1
await faceapi.nets.ssdMobilenetv1.load(modelsPath);
state.netsOptions.ssdMobilenetv1 = new faceapi.SsdMobilenetv1Options({
minConfidence: 0.5, // 0 ~ 1
maxResults: 50, // 0 ~ 100
});
// 模型参数-tinyFaceDetector
await faceapi.nets.tinyFaceDetector.load(modelsPath);
state.netsOptions.tinyFaceDetector = new faceapi.TinyFaceDetectorOptions({
inputSize: 416, // 160 224 320 416 512 608
scoreThreshold: 0.5, // 0 ~ 1
});
// 输出库版本
console.log(
`FaceAPI Version: ${
faceapi?.version || "(not loaded)"
} \nTensorFlow/JS Version: ${
faceapi.tf?.version_core || "(not loaded)"
} \nBackend: ${
faceapi.tf?.getBackend() || "(not loaded)"
} \nModels loaded: ${faceapi.tf.engine().state.numTensors} tensors`
);
// 节点元素
state.imgEl = document.getElementById("page_draw-img");
state.canvasEl = document.getElementById("page_draw-canvas");
// 关闭模型加载
state.netsLoadModel = false;
}
/**根据模型参数识别绘制 */
async function fnRedraw() {
if (!state.imgEl || !state.canvasEl) return;
const detect = await faceapi
.detectAllFaces(state.imgEl, state.netsOptions[state.netsType])
// 需引入面部轮廓模型
.withFaceLandmarks()
// 需引入年龄性别模型
.withAgeAndGender();
// 匹配元素大小
const dims = faceapi.matchDimensions(state.canvasEl, state.imgEl, false);
const result = faceapi.resizeResults(detect, dims);
// 面框分值
if (state.draws.includes("box")) {
faceapi.draw.drawDetections(state.canvasEl, result);
}
// 面部轮廓
if (state.draws.includes("landmark")) {
// 需引入面部轮廓模型
faceapi.draw.drawFaceLandmarks(state.canvasEl, result);
}
// 年龄性别
if (state.draws.includes("ageGender")) {
// 需引入年龄性别模型模型
result.forEach((item) => {
const { age, gender, genderProbability } = item;
new faceapi.draw.DrawTextField(
[
`${Math.round(age)} Age`,
`${gender} (${Math.round(genderProbability)})`,
],
item.detection.box.bottomLeft
).draw(state.canvasEl);
});
}
}
/**更换图片 */
async function fnChange(e) {
if (!state.imgEl || !state.canvasEl) return;
if (!e.target || !e.target.files.length) return;
// 将文件显示为图像并识别
const img = await faceapi.bufferToImage(e.target.files[0]);
state.imgEl.src = img.src;
await fnRedraw();
}
// 模型变更
watch(
() => state.netsType,
() => {
fnRedraw();
}
);
// 面框变更
watch(
() => state.draws,
() => {
fnRedraw();
}
);
onMounted(() => {
fnLoadModel().finally(() => fnRedraw());
});
</script>
<template>
<div class="page">
<div class="page_option">
<div>
<label>更换图片:</label>
<input
type="file"
accept="image/png, image/jpeg"
@change="fnChange($event)"
/>
</div>
<div>
<label>面框分值:</label>
<input type="checkbox" value="box" v-model="state.draws" />
</div>
<div>
<label>面部轮廓:</label>
<input type="checkbox" value="landmark" v-model="state.draws" />
</div>
<div>
<label>年龄性别:</label>
<input type="checkbox" value="ageGender" v-model="state.draws" />
</div>
<div>
<label>算法模型:</label>
<select v-model="state.netsType">
<option value="ssdMobilenetv1">SSD Mobilenet V1</option>
<option value="tinyFaceDetector">Tiny Face Detector</option>
</select>
</div>
</div>
<div class="page_load" v-show="state.netsLoadModel">Load Model...</div>
<div class="page_draw" v-show="!state.netsLoadModel">
<img id="page_draw-img" src="/images/cp/cp01.jpg" />
<canvas id="page_draw-canvas"></canvas>
</div>
</div>
</template>
<style scoped></style>