Views
No views yet
face_recognition_sface_2021dec_int8bq.onnx represents the block-quantized version in int8 precision and is generated using block_quantize.py with block_size=64.| Models | Accuracy |
|---|---|
| SFace | 0.9940 |
| SFace block | 0.9942 |
| SFace quant | 0.9932 |
1# recognize on images
2python demo.py --target /path/to/image1 --query /path/to/image2
3
4# get help regarding various parameters
5python demo.py --help1# A typical and default installation path of OpenCV is /usr/local
2cmake -B build -D OPENCV_INSTALLATION_PATH=/path/to/opencv/installation .
3cmake --build build
4
5# detect on camera input
6./build/demo -t=/path/to/target_face
7# detect on an image
8./build/demo -t=/path/to/target_face -q=/path/to/query_face -v
9# get help messages
10./build/demo -h