Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I cannot obtain Landmark points #14

Open
xcelder opened this issue Aug 17, 2016 · 19 comments
Open

I cannot obtain Landmark points #14

xcelder opened this issue Aug 17, 2016 · 19 comments

Comments

@xcelder
Copy link

xcelder commented Aug 17, 2016

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
Copy link

koltaar commented Sep 9, 2016

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
Copy link

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
Copy link

shubhwicked commented Dec 22, 2016

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
Copy link

tlehffkffk commented Mar 24, 2017

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

  • if use this, decompress bz2 file

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

@clementf2b
Copy link

@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
Copy link

clementf2b commented Mar 28, 2017

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
Copy link

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

@EzequielAdrianM
Copy link

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

  • Make sure your app has storage permission enabled.
  • You need to use the correct shape_predictor.dat file, otherwise, it will not detect the landmarks. On the first launch, you have to wait for it to be copied to your sdcard root path.
  • Sometimes, it does not detect faces because the detector only looks for faces between specific angles. I mean, you will make it work if you rotate your preview.. It CAN detect mirrored faces.
  • The detector uses OpenCV internally, so if you want to make it work with something more advanced than Bitmaps, like Mat or RAW Camera Byes.. you will need to modify and rebuild the library.
    I have already made it work and explained it HERE

Hope helping :)

@Isadorable
Copy link

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
Copy link

@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
Copy link

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
Copy link

Isadorable commented Apr 21, 2017

@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
Copy link

kirilamenski commented Aug 1, 2017

@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
Copy link

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
Copy link

tunda50 commented Mar 18, 2018

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
Copy link

amogh112 commented Mar 26, 2018

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
Copy link

helloworld77 commented Jul 30, 2018

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
Copy link

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
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests