yfeng95 / PRNet

Joint 3D Face Reconstruction and Dense Alignment with Position Map Regression Network (ECCV 2018)
http://openaccess.thecvf.com/content_ECCV_2018/papers/Yao_Feng_Joint_3D_Face_ECCV_2018_paper.pdf
MIT License
4.95k stars 947 forks source link

no detected face #191

Open punitha-valli opened 4 years ago

punitha-valli commented 4 years ago

@YadiraF @ksachdeva @cclauss @scott-vsi @YadiraF @AndiLi99 @AndiLi99

Hi,

I used my own images (oulu-npu dataset), I am getting the depth map of the corresponding images.

But for certain images, it shows like,

warning: no detected face warning: no detected face warning: no detected face warning: no detected face warning: no detected face warning: no detected face

I found that the length of these images, is Zero(0), as per the code

    else:
        detected_faces = self.dlib_detect(image)
        #print("shape"+str(image.shape))
        #print(len(detected_faces))
        if len(detected_faces) == 0:
            print('warning: no detected face')
            return None

but i want to get the depth map of those images also, is there any way

i have attached some of the images below,

image image

punitha-valli commented 4 years ago

@punitha-valli @ksachdeva @cclauss

@scott-vsi @YadiraF

the images i have attached for the above issues,

image

Globle-Thunder commented 8 months ago

@YadiraF @ksachdeva @cclauss @scott-vsi @YadiraF @AndiLi99 @AndiLi99

Hi,

I used my own images (oulu-npu dataset), I am getting the depth map of the corresponding images.

But for certain images, it shows like,

warning: no detected face warning: no detected face warning: no detected face warning: no detected face warning: no detected face warning: no detected face

I found that the length of these images, is Zero(0), as per the code

    else:
        detected_faces = self.dlib_detect(image)
        #print("shape"+str(image.shape))
        #print(len(detected_faces))
        if len(detected_faces) == 0:
            print('warning: no detected face')
            return None

but i want to get the depth map of those images also, is there any way

i have attached some of the images below,

image image Hi, how you solve this problem.