-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathpage.vue
110 lines (102 loc) · 2.78 KB
/
page.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
<template lang="pug">
div.page
div.imglist
el-carousel(:interval="4000" type="card" @change="change" height="400px" :autoplay="autoPlay")
el-carousel-item(v-for="(item, index) in imgList" :key="item")
img.img(:src="item" :ref="'img' + index")
span.result-text(v-if="result[index]") {{ result[index] }}
el-button(type="primary" @click="predict").predict 点击识别此图
div.loading(v-if="isLoading || isPredicting")
span.loading-text {{ isLoading ? 'loading...' : '识别中……'}}
</template>
<script>
import 'regenerator-runtime/runtime';
import map from './data/wine.map.json';
import * as mobilenet from '@paddlejs-models/mobilenet';
export default {
data() {
return {
imgList: [
require('./imgs/1.jpg'),
require('./imgs/2.jpg'),
require('./imgs/3.jpg'),
require('./imgs/4.jpg'),
require('./imgs/5.jpg'),
require('./imgs/6.jpg'),
require('./imgs/7.jpg')
],
result: {},
curImgIndex: 0,
autoPlay: true,
isLoading: true,
isPredicting: false
}
},
methods: {
change(index) {
this.curImgIndex = index;
},
async predict() {
this.autoPlay = false;
this.isPredicting = true;
const curIndex = this.curImgIndex;
const imgDom = this.$refs['img' + this.curImgIndex][0];
await this.predictModel(imgDom, curIndex);
this.isPredicting = false;
},
async load() {
const path = 'https://paddlejs.bj.bcebos.com/models/fuse/mobilenet/wine_fuse_activation/model.json';
await mobilenet.load({
path,
mean: [0.485, 0.456, 0.406],
std: [0.229, 0.224, 0.225]
}, map);
this.isLoading = false;
},
async predictModel(img, curIndex) {
const res = await mobilenet.classify(img);
this.result[curIndex] = res || '无结果';
}
},
mounted() {
this.load();
}
}
</script>
<style>
.page {
padding-top: 50px;
text-align: center;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #f1f1f1;
}
.img {
display: block;
width: 100%;
height: 380px;
}
.loading {
position: fixed;
display: flex;
justify-content: center;
align-items: center;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, .7);
color: #fff;
z-index: 2;
font-size: 32px;
}
.imglist {
margin-bottom: 50px;
}
.result-text {
font-weight: bold;
}
</style>