sipeed / MaixPy3

Python sdk for Sipeed Maix-II-Dock(v831). Other board please use https://github.com/sipeed/MaixPy
https://wiki.sipeed.com/maixpy3
MIT License
173 stars 43 forks source link

Fail download face model from maixhub #40

Closed ricardojlrufino closed 2 years ago

ricardojlrufino commented 2 years ago

Download error image

Can someone send me this model?

junhuanchen commented 2 years ago

In fact, in the latest systems, this model is built in. (retinaface.py)

wonderfullook commented 2 years ago

Maybe you can try python /root/retinaface.py to run this model in the linux shell on v831

ricardojlrufino commented 2 years ago

retinaface.py works thanks

ricardojlrufino commented 2 years ago

There is some documentation that explains these parameters ? core_threshold = 70 #识别分数阈值 input_size = (224, 224, 3) #输入图片尺寸 input_size_fe = (128, 128, 3) #输入人脸数据 feature_len = 256 #人脸数据宽度 steps = [8, 16, 32] #

ricardojlrufino commented 2 years ago

I managed to run on another device: TEST_FACEDETECT_01_PC1

https://user-images.githubusercontent.com/515675/177903100-0daa39b1-04e0-452b-b8d7-886673622fd4.mp4

Neutree commented 2 years ago

core_threshold = 70 # threshold, when score > this value, we think it's the pepole input_size = (224, 224, 3) #model input shape input_size_fe = (128, 128, 3) # face feature mode input size feature_len = 256 # face feature array length steps = [8, 16, 32] # model params, just fixed to this value