tzutalin / dlib-android-app

:dragon: Android app to demo dlib-android(https://github.com/tzutalin/dlib-android). Use the prebuilt shared-lib built from dlib-android
Apache License 2.0
682 stars 245 forks source link

I cannot obtain Landmark points #14

Open xcelder opened 8 years ago

xcelder commented 8 years ago

I've tried to integrate this library by several ways, but none works.

Regarding gradle, the library only "works" if I use v.1.0.2 (which is not published in your git main page); otherwise I get crash: "Fatal signal 6 (SIGABRT), code -6 in tid 32077 (Thread-12710)". From your demo, if I import the dlib module to my project, it "works".

I say "works" because I only get the bound (Rect) of the faces, the "getFaceLandmark()" method returns 0 points and I don't know why :/ However, if I copy my code (an example with hardware.camera not with camera2) to the project of your demo, everything works fine, I get all Landmark points and Bounds and no crashes... and I don't understand why. I've checked all gradle files, if any library is missing, but no... I checked AndroidManifest too... but I don't find anything strange... Could you help me with this?

koltaar commented 8 years ago

Pretty much the same here.

Basicly I got an image from an OpenCV cameraView or an OpenCV Mat and I can't figure out how to get the landmark from there. I tried to convert it in Bitmap then use your bitmapFaceDetect but it doesn't find any face (and it's slow).

Could you please help me =) ? I'm not so experienced so don't hesitate to be really precise on how to get the faces and landmarks from an OpenCV Mat ! Thanks !!

gerardsimons commented 8 years ago

Are you using the one that is copied to SD card? I am not sure why but it only seems to work if you use that one. I thought it was unnecessary so I tried loading directly from raw folder myself, but that does not work for some reason (anyone know why?).

Make sure it is copied correctly as in the example.

shubhwicked commented 7 years ago

did you guys find the answer for crash: "Fatal signal 6 (SIGABRT), code -6 in tid 32077 (Thread-12710)". In my code it crashes with same code on Nexus devices and it is running with other samsung device etc.

tlehffkffk commented 7 years ago

If you have this problem-cannot get landmark yet, change shape predictor dat file this url. http://dlib.net/files/shape_predictor_68_face_landmarks.dat.bz2

I don't know this problem well, I think your dat file is too old to use your build verson.

clementf2b commented 7 years ago

@tlehffkffk I got the same problem. I changed to your .dat file but still doesn't work. Is there any other methods to fix this? Thank you.

clementf2b commented 7 years ago

It seems like the problem is coming from screen overlay. My friend modify this then he can use the application(my app and demo).

Isadorable commented 7 years ago

Hi @clementf2b , please can you explain more precisely how your friend fixed it?

EzequielAdrianM commented 7 years ago

To make it work, you need to ensure a couple of things:

Hope helping :)

Isadorable commented 7 years ago

Thank you for you reply @EzequielAdrianM .

In my case, face detection is working perfectly and it's quite precise. This leads me to to exclude your point 3 . I only have problems detecting landmarks. I've enabled both read and write permissions on external storage (but I'm working on camera frames therefore, this shouldn't be that important). Even using your .dat file I still have the same problem.

As for the image format, Bitmap is perfect for my purpose and given the fact that the face detection is working and the same bitmaps, converted to jpg and saved in the internal memory look good, confirms that they were converted properly from NV21. Thank you for your link tho, I bet your code can speed up the conversion process :)

n.b. I can visualise all the landmarks running the original demo.

I feel like I'm missing something stupid but still I can't figure it out.

clementf2b commented 7 years ago

@Izzy88 My friend only downloaded the demo Dlib apk and install it on the phone. Then it can detect the landmark result. But I still dun know the major problem. My feel is same as your last sentence

EzequielAdrianM commented 7 years ago

Sometimes stupid simple things can cause a lot of problems. I would like to see your Android Studio project.. Otherwise I can't know what is going wrong.

Isadorable commented 7 years ago

@clementf2b Thank you anyway :) @EzequielAdrianM Thank you so much! Your previous post pushed me to focus more carefully on aspects that, in my opinion, were secondary. I've finally managed to find the landmarks. It was exclusively due to the way I was granting the read/write permissions (older API version) and the fact that I was completely ignoring the overlay permissions.

kirilamenski commented 7 years ago

@Izzy88 Perhaps there is something else besides permitions? I was granting permissions as follow:

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

<uses-permission android:name="android.permission.CAMERA"/>

<uses-feature android:name="android.hardware.camera"/>

<uses-feature android:name="android.hardware.camera.autofocus"/>

but still getings 0 from getFaceLandmarks(); Can you please explain how did you decide this?

Regards!

spife129 commented 7 years ago

to gerardsimons, The dat file has to be copied to sdcard so the native code can assess it. Otherwise, native code cannot access res/raw folder like java code does.

tunda50 commented 6 years ago

It seems like there is issue with arm64-v8a . In CPU architecture arm64-v8a we are getting only face coordinates but ArrayList of landmark points are empty. Phones which has CPU architecture "armeabi-v7a" can detect face and landmarks.

amogh112 commented 6 years ago

So what worked for me, alongside the classes and files being the same as this repository (on armeabi-v7a) is:

  1. Set the permission for external drive.
  2. Make sure that when FaceDetect object is initialised, the shape_predictor_face_landmarks.dat is present at the target location. Check this by putting String.valueOf(new File(Constants.getFaceShapeModelPath()).exists()) before the initialisation Hope it helps Thanks
helloworld77 commented 6 years ago

Same problem, I use dlib + opencv to detect face, just detect a rectangle but no 68 landmarks. Thanks to EzequielAdrianM. I solved this problem by authorizing the READ_EXTERNAL_STORAGE and WRITE_EXTERNAL_STORAGE. From android 6.0, this permission should not only declare in AndroidManifest, but also dynamic declare in mainactibity: // add this in AndroidManifest.xml

    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

// create this class

import android.Manifest;
import android.app.Activity;
import android.content.pm.PackageManager;
import android.support.v4.app.ActivityCompat;
public class PermissionUtils {
    private static final int REQUEST_EXTERNAL_STORAGE = 1;
    private static String[] PERMISSIONS_STORAGE = {
            Manifest.permission.READ_EXTERNAL_STORAGE,
            Manifest.permission.WRITE_EXTERNAL_STORAGE};
    public static void verifyStoragePermissions(Activity activity) {
        int permission = ActivityCompat.checkSelfPermission(activity,
                Manifest.permission.WRITE_EXTERNAL_STORAGE);
        if (permission != PackageManager.PERMISSION_GRANTED) {
            ActivityCompat.requestPermissions(activity, PERMISSIONS_STORAGE,
                    REQUEST_EXTERNAL_STORAGE);
        }
    }
}

// call verifyStoragePermissions in onCreate() MainActivity: verifyStoragePermissions(this);

pjankiewicz commented 4 years ago

I had the same problem. It turned out that I initialized the detector in the frame processor and not in the MainActivity. I solved it by moving the initialization to the MainActivity.

bilalahmad6354 commented 3 years ago

You also need to ask the WRITE_EXTERNAL_STORAGE & READ_EXTERNAL_STORAGE runtime permission. This fixed my issue.