├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── go.mod ├── hello.go ├── keliamoniz2.out.png ├── libfacedetection.go ├── libfacedetection ├── CMakeLists.txt ├── ChangeLog ├── LICENSE ├── README.md ├── aarch64-toolchain.cmake ├── example │ ├── libfacedetect.cpp │ └── libfacedetectcnn-example.cpp ├── images │ ├── chloecalmon.png │ ├── cnnresult.png │ ├── keliamoniz1.jpg │ └── keliamoniz2.jpg ├── models │ ├── README.md │ ├── caffe │ │ ├── yufacedetectnet-open-v1.caffemodel │ │ ├── yufacedetectnet-open-v1.prototxt │ │ ├── yufacedetectnet-open-v1.solver.prototxt │ │ └── yufacedetectnet-open-v1.train.prototxt │ └── openvino │ │ ├── yufacedetectnet-open-v1-320x240.bin │ │ └── yufacedetectnet-open-v1-320x240.xml └── src │ ├── facedetectcnn-floatdata.cpp │ ├── facedetectcnn-int8data.cpp │ ├── facedetectcnn-model.cpp │ ├── facedetectcnn.cpp │ └── facedetectcnn.h ├── libfacedetection_capi.cc ├── libfacedetection_capi.h ├── z_facedetectcnn_cc.cc ├── z_facedetectcnn_floatdata.cc ├── z_facedetectcnn_int8data.cc └── z_facedetectcnn_model.cc /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /libfacedetection/build 2 | a.out.png 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/go.mod -------------------------------------------------------------------------------- /hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/hello.go -------------------------------------------------------------------------------- /keliamoniz2.out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/keliamoniz2.out.png -------------------------------------------------------------------------------- /libfacedetection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection.go -------------------------------------------------------------------------------- /libfacedetection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/CMakeLists.txt -------------------------------------------------------------------------------- /libfacedetection/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/ChangeLog -------------------------------------------------------------------------------- /libfacedetection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/LICENSE -------------------------------------------------------------------------------- /libfacedetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/README.md -------------------------------------------------------------------------------- /libfacedetection/aarch64-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/aarch64-toolchain.cmake -------------------------------------------------------------------------------- /libfacedetection/example/libfacedetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/example/libfacedetect.cpp -------------------------------------------------------------------------------- /libfacedetection/example/libfacedetectcnn-example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/example/libfacedetectcnn-example.cpp -------------------------------------------------------------------------------- /libfacedetection/images/chloecalmon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/images/chloecalmon.png -------------------------------------------------------------------------------- /libfacedetection/images/cnnresult.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/images/cnnresult.png -------------------------------------------------------------------------------- /libfacedetection/images/keliamoniz1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/images/keliamoniz1.jpg -------------------------------------------------------------------------------- /libfacedetection/images/keliamoniz2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/images/keliamoniz2.jpg -------------------------------------------------------------------------------- /libfacedetection/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/README.md -------------------------------------------------------------------------------- /libfacedetection/models/caffe/yufacedetectnet-open-v1.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/caffe/yufacedetectnet-open-v1.caffemodel -------------------------------------------------------------------------------- /libfacedetection/models/caffe/yufacedetectnet-open-v1.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/caffe/yufacedetectnet-open-v1.prototxt -------------------------------------------------------------------------------- /libfacedetection/models/caffe/yufacedetectnet-open-v1.solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/caffe/yufacedetectnet-open-v1.solver.prototxt -------------------------------------------------------------------------------- /libfacedetection/models/caffe/yufacedetectnet-open-v1.train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/caffe/yufacedetectnet-open-v1.train.prototxt -------------------------------------------------------------------------------- /libfacedetection/models/openvino/yufacedetectnet-open-v1-320x240.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/openvino/yufacedetectnet-open-v1-320x240.bin -------------------------------------------------------------------------------- /libfacedetection/models/openvino/yufacedetectnet-open-v1-320x240.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/models/openvino/yufacedetectnet-open-v1-320x240.xml -------------------------------------------------------------------------------- /libfacedetection/src/facedetectcnn-floatdata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/src/facedetectcnn-floatdata.cpp -------------------------------------------------------------------------------- /libfacedetection/src/facedetectcnn-int8data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/src/facedetectcnn-int8data.cpp -------------------------------------------------------------------------------- /libfacedetection/src/facedetectcnn-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/src/facedetectcnn-model.cpp -------------------------------------------------------------------------------- /libfacedetection/src/facedetectcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/src/facedetectcnn.cpp -------------------------------------------------------------------------------- /libfacedetection/src/facedetectcnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection/src/facedetectcnn.h -------------------------------------------------------------------------------- /libfacedetection_capi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection_capi.cc -------------------------------------------------------------------------------- /libfacedetection_capi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/libfacedetection_capi.h -------------------------------------------------------------------------------- /z_facedetectcnn_cc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/z_facedetectcnn_cc.cc -------------------------------------------------------------------------------- /z_facedetectcnn_floatdata.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/z_facedetectcnn_floatdata.cc -------------------------------------------------------------------------------- /z_facedetectcnn_int8data.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/z_facedetectcnn_int8data.cc -------------------------------------------------------------------------------- /z_facedetectcnn_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chai2010/libfacedetection-go/HEAD/z_facedetectcnn_model.cc --------------------------------------------------------------------------------