@@ -32,7 +32,7 @@ static bool compile_models(){
32
32
return false ;
33
33
34
34
string onnx_file = iLogger::format (" %s.onnx" , name);
35
- string model_file = iLogger::format (" %s.fp32 .trtmodel" , name);
35
+ string model_file = iLogger::format (" %s.FP32 .trtmodel" , name);
36
36
int test_batch_size = 1 ;
37
37
38
38
if (not iLogger::exists (model_file)){
@@ -116,7 +116,7 @@ int app_arcface(){
116
116
117
117
auto detector = Scrfd::create_infer (" scrfd_2.5g_bnkps.640x480.FP32.trtmodel" , 0 , 0 .6f );
118
118
// auto detector = RetinaFace::create_infer("mb_retinaface.640x480.FP32.trtmodel", 0, 0.5f);
119
- auto arcface = Arcface::create_infer (" arcface_iresnet50.fp32 .trtmodel" , 0 );
119
+ auto arcface = Arcface::create_infer (" arcface_iresnet50.FP32 .trtmodel" , 0 );
120
120
auto library = build_library (detector, arcface);
121
121
122
122
auto files = iLogger::find_files (" face/recognize" );
@@ -180,7 +180,7 @@ int app_arcface_video(){
180
180
181
181
auto detector = Scrfd::create_infer (" scrfd_2.5g_bnkps.640x480.FP32.trtmodel" , 0 , 0 .6f );
182
182
// auto detector = RetinaFace::create_infer("mb_retinaface.640x480.FP32.trtmodel", 0, 0.5f);
183
- auto arcface = Arcface::create_infer (" arcface_iresnet50.fp32 .trtmodel" , 0 );
183
+ auto arcface = Arcface::create_infer (" arcface_iresnet50.FP32 .trtmodel" , 0 );
184
184
auto library = build_library (detector, arcface);
185
185
// auto remote_show = create_zmq_remote_show();
186
186
INFO (" Use tools/show.py to remote show" );
@@ -277,7 +277,7 @@ int app_arcface_tracker(){
277
277
278
278
auto detector = Scrfd::create_infer (" scrfd_2.5g_bnkps.640x480.FP32.trtmodel" , 0 , 0 .6f );
279
279
// auto detector = RetinaFace::create_infer("mb_retinaface.640x480.FP32.trtmodel", 0, 0.6f);
280
- auto arcface = Arcface::create_infer (" arcface_iresnet50.fp32 .trtmodel" , 0 );
280
+ auto arcface = Arcface::create_infer (" arcface_iresnet50.FP32 .trtmodel" , 0 );
281
281
// auto library = build_library(detector, arcface);
282
282
283
283
// tools/show.py connect to remote show
0 commit comments