mtcnn
mtcnn copied to clipboard
MTCNN face detection implementation for TensorFlow, as a PIP package.
I have installed mtcnn module using ``` pip install mtcnn ``` But it still giving me following error ModuleNotFoundError: No module named 'mtcnn.mtcnn'; 'mtcnn' is not a package
I am using it on beach volleyball photos and videos and it mistakens nipples for eyes and belly button for a mouth I believe. The landmarks are not exact but...
org.tensorflow:tensorflow-android:+ not able to change to version 2.4 > Could not find org.tensorflow:tensorflow-android:2.4.0.
When I run the suggested command, I get this error: ``` $ pip3 install mtcnn Collecting mtcnn Downloading https://files.pythonhosted.org/packages/67/43/abee91792797c609c1bf30f1112117f7a87a713ebaa6ec5201d5555a73ef/mtcnn-0.1.0-py3-none-any.whl (2.3MB) 100% |████████████████████████████████| 2.3MB 604kB/s Collecting opencv-python>=4.1.0 (from mtcnn) Using cached...
when using model.predict() on small batches it is verry slow. Alternatively you can call the model directly with the training=False flag which is way faster. the predict method does assemble...
I am using this GPU - RTX3090. So installed Cuda 11.1, Cudnn 8.05, tf-nightly-gpu 2.5.0.dev20201207. While using MTCNN, getting this error. ``` File "faceDetector.py", line 11, in __init__ self.detector =...
if i want to modify part of the structure of Pnet ,Rnet and Onet. Can i just modify on factory.py directly,or i need retraining these three network.
Congrats for this nice project @ipazc! I see the output of your algorithm is something like: ``` [ { 'box': [277, 90, 48, 63], 'keypoints': { 'nose': (303, 131), 'mouth_right':...
I use a library that only works with image_data format channels_first and your library works only with channels_first. When you try to init detector from the example with keras settings...
I am trying to use this package in a Jupiter notebook but I am getting the following error shown below: ``` ImportError Traceback (most recent call last) in () ---->...