Willjay

Results 12 comments of Willjay

IMO, using the bounding box returned by the API and you can get the screenshot by [this method](https://stackoverflow.com/a/31582354/5571327) according to your desired size.

@jainamSynoverge you have to train another network to do the verification

you can easily take a screenshot with specific (given) boundary of the image. https://stackoverflow.com/a/25445629/5571327

IMO, you can [save the screenshot](https://stackoverflow.com/a/39299100/5571327) according to detected `facebounds`

Not a big problem, all you have to do is to use `VNDetectFaceLandmarksRequest` and handle the landmarks you find. I'll update a new version, you can check it out :)...

Are you doing detection on a saved video?

Oh, I got it. You wanna doing something like motion detection (smooth way) instead of just detect it every single second.

There's a lot of vision libraries, also [Google Vision API](https://github.com/Weijay/GoogleFaceDetection). I don't know what exactly the difference between vision framework and these libs. But these APIs are all [based on...

I also find 0 boxes using tiny-yolo coco `cfg` and `weights` I change `weights_file.read(16))` to `weights_file.read(20))` in `yad2k.py` and it works! ``` weights_header = np.ndarray( shape=(4, ), dtype='int32', buffer=weights_file.read(20)) ```...

@holger-prause , This is just my opinion, I really don't know for sure. I just look into the source code in darknet to figure out how to load weights. ###...