File tree 3 files changed +8
-11
lines changed
test/java/com/luna/commons
3 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -64,4 +64,7 @@ luna.ftp.voice=/pub/voice/
64
64
# \u672C\u5730\u4E34\u65F6\u8DEF\u5F84
65
65
luna.ftp.localPath =D:/
66
66
# ffmpeg \u5B89\u88C5\u8DEF\u5F84 windows:D:/ffmpeg/ffmpeg/bin/ffmpeg.exe Linux: ffmpeg
67
- luna.ffmpeg.path =D:/ffmpeg/ffmpeg/bin/ffmpeg.exe
67
+ luna.ffmpeg.path =D:/ffmpeg/ffmpeg/bin/ffmpeg.exe
68
+ # openCv\u4EBA\u8138\u6A21\u578B
69
+ luna.face.faceModel =static/faceData/flandmark_model.dat
70
+ luna.face.frontalFace =static/faceData/haarcascade_frontalface_alt.xml
Original file line number Diff line number Diff line change 1
1
package com .luna .commons ;
2
2
3
3
import com .luna .commons .config .JavaCvConfigValue ;
4
- import com .luna .commons .ffmpeg .FfmpegConfigValue ;
5
4
import com .luna .commons .javacv .CheckFace ;
6
5
import org .junit .Test ;
7
6
import org .junit .runner .RunWith ;
Original file line number Diff line number Diff line change @@ -16,40 +16,33 @@ luna.baidu.appKey=xxxx
16
16
luna.baidu.secretKey=xxx
17
17
luna.baidu.appId=xxx
18
18
luna.baidu.jsKey=xxx
19
-
20
19
# 腾讯APi
21
20
luna.tencent.secretId=xxx
22
21
luna.tencent.secretKey=xxx
23
-
24
22
# 腾讯短信服务
25
23
# 短信模板Id
26
24
luna.smstencent.authCode=xxx
27
25
luna.smstencent.resetPassword=xxx
28
26
luna.smstencent.appId=xxx
29
27
luna.smstencent.sign=xxx
30
-
31
28
#邮箱操作
32
29
#自定义发送用户名
33
30
spring.mail.name=xxx
34
31
spring.mail.username=xxx
35
32
spring.mail.password=xxx
36
33
spring.mail.host=xxx
37
34
spring.mail.smtp.ssl.enable=true
38
-
39
35
# 腾讯云市场APi
40
-
41
36
# 天眼身份认证
42
37
luna.tencent.skyEyeSecretid=xxx
43
38
luna.tencent.skyEyeSecretkey=xxx
44
39
# 腾讯地图
45
40
luna.tencent.mapKey=xxx
46
-
47
41
#阿里oss服务器
48
42
luna.ali.ossId=xxx
49
43
luna.ali.ossKey=xxx
50
44
luna.ali.bucketName=xxx
51
45
luna.ali.host=xxx
52
-
53
46
# 支付宝
54
47
# 应用ID,您的APPID,收款账号既是您的APPID对应支付宝账号
55
48
luna.alipay.appId=xxx
@@ -65,11 +58,9 @@ luna.alipay.returnUrl=xxx
65
58
luna.alipay.signType=RSA2
66
59
# 支付宝网关
67
60
luna.alipay.gatewayUrl=https://openapi.alipaydev.com/gateway.do
68
-
69
61
# redis
70
62
spring.redis.host=xxx
71
63
spring.redis.port=6379
72
-
73
64
#ftp
74
65
#地址
75
66
luna.ftp.host=xxx
@@ -87,6 +78,10 @@ luna.ftp.voice=/pub/voice/
87
78
luna.ftp.localPath=D:/
88
79
# ffmpeg 安装路径 windows:D:/ffmpeg/ffmpeg/bin/ffmpeg.exe Linux: ffmpeg
89
80
luna.ffmpeg.path=D:/ffmpeg/ffmpeg/bin/ffmpeg.exe
81
+
82
+ # openCv人脸模型
83
+ luna.face.faceModel=static/faceData/flandmark_model.dat
84
+ luna.face.frontalFace=static/faceData/haarcascade_frontalface_alt.xml
90
85
```
91
86
92
87
You can’t perform that action at this time.
0 commit comments