Results 4 issues of Amir Saniyan

The following code detects faces on camera with [yufacedetectnet-open-v2.prototxt](https://github.com/ShiqiYu/libfacedetection/blob/master/models/caffe/yufacedetectnet-open-v2.prototxt) and [yufacedetectnet-open-v2.caffemodel](https://github.com/ShiqiYu/libfacedetection/blob/master/models/caffe/yufacedetectnet-open-v2.caffemodel), but how can I predict face landmarks with this Caffe model? **main.cpp**: ```cpp #include #include #include #include #include #define...

Why should I use `facedetect_cnn` function while `objectdetect_cnn` exists and has a better signature? **facedetect_cnn signature**: ```cpp FACEDETECTION_EXPORT int * facedetect_cnn(unsigned char * result_buffer, //buffer memory for storing face detection...

**Problem**: Build failed on Raspberry Pi (ARM) when `ENABLE_NEON=ON`: ```sh $ cmake \ -D CMAKE_BUILD_TYPE=Release \ -D ENABLE_AVX2=OFF \ -D ENABLE_AVX512=OFF \ -D ENABLE_NEON=ON \ -D USE_OPENMP=ON \ -D DEMO=OFF...

Hello It seems that model implemented incorrectly. **File**: `model.py` **Line**: `57` **Source**: https://github.com/FENGShuanglang/2D-Vnet-Keras/blob/master/model.py#L57 **Decription**: The right part of the V-Net network consists of a decompresses path, so it should contains...