Daniel

Results 6 issues of Daniel

Hi! Thanks for this project! Can you create release tags? v0.9.5? go mod tidy ```github.com/zcalusic/sysinfo v0.0.0-20210905121133-6fa2f969a900``` Maybe it will be better? ```github.com/zcalusic/sysinfo v0.9.5```

* Big update * Add support opencv (cv::Mat) * Add gender support * Add age support ``` const cnn = "testdata/mmod_human_face_detector.dat" const shape = "testdata/shape_predictor_68_face_landmarks.dat" const descr = "testdata/dlib_face_recognition_resnet_model_v1.dat" const...

need https://github.com/AlexeyAB/darknet/pull/6838 for libdarknet example: ```darknet.Init(*configFile, *weightsFile, 0) result, bboxs := darknet.Detect(*imageFile) if result != -1 { for _, bbox := range bboxs { fmt.Println(bbox.Rect, bbox.Confidence, bbox.ObjId) } }

enhancement