inferno icon indicating copy to clipboard operation
inferno copied to clipboard

about MEAD data process

Open Shirley-0708 opened this issue 2 years ago • 4 comments

Thank you for this great work!

I downloaded a part of the dataset of mead and followed the data processing method of readme, modified the file path of input, and output, and set detect landmark to true in order, but I got this error. 微信图片_20240307193058

9daef3cdd53b7827ba1d1d8fd38554f 960466aab2c32d71e5af6342b292b89

I located VideoFaceDetectionDataset here, self.index_for_frame_map are all 0, resulting in detection_in_ frame_index always 0, so there is an error reading the next frame. But I don't know how to fix it. Is there something wrong with my steps? More details are below. img_v3_028o_0ec4141b-8f47-4557-b136-cd29501f72fg

Shirley-0708 avatar Mar 07 '24 11:03 Shirley-0708

Not all of the stages can be run at the same time. I added a clarification and a more detailed manual to the README. Please give it a shot. :-)

https://github.com/radekd91/inferno/tree/master/inferno_apps/TalkingHead/data_processing

radekd91 avatar Mar 24 '24 23:03 radekd91

in inferno/inferno/datasets/VideoFaceDetectionDataset.py just change the variable named self.vid_read in line 48 to self.vid_read = vid_read or 'skvread'

juheon-hwang avatar Apr 03 '24 04:04 juheon-hwang

Not all of the stages can be run at the same time. I added a clarification and a more detailed manual to the README. Please give it a shot. :-)

https://github.com/radekd91/inferno/tree/master/inferno_apps/TalkingHead/data_processing

The issue doesn't seem to lie with the execution order as I've strictly adhered to it. I've come across the exact same problem while working with the MEAD dataset. Could you please look into whether there's a flaw in the code logic, and advise on how to rectify it?

gpfworld avatar Sep 12 '24 11:09 gpfworld

in inferno/inferno/datasets/VideoFaceDetectionDataset.py just change the variable named self.vid_read in line 48 to self.vid_read = vid_read or 'skvread'

From what I see, the current code follows this logic. The error seems to be thrown at line 115, not 86, so the issue might not be here.

gpfworld avatar Sep 12 '24 11:09 gpfworld