Skip to content

BIWI Dataset Creation  #61

Open
Open
@LaviniaPedrollo

Description

@LaviniaPedrollo

Hi, I see that when You create the BIWI dataset inside the following .py files:

  • /FSA-Net/data/TYY_create_db_biwi.py
  • /FSA-Net/data/TYY_create_db_biwi_70_30.py
    you use this code structure
for num in range(0,24):
		if num<9:
			mypath_obj = mypath+'/0'+str(num+1)
		else:
			mypath_obj = mypath+'/'+str(num+1)
		print(mypath_obj)
		onlyfiles_txt_temp = [f for f in listdir(mypath_obj) if isfile(join(mypath_obj, f)) and join(mypath_obj, f).endswith('.txt')]
		onlyfiles_png_temp = [f for f in listdir(mypath_obj) if isfile(join(mypath_obj, f)) and join(mypath_obj, f).endswith('.png')]
	
		onlyfiles_txt_temp.sort()
		onlyfiles_png_temp.sort()

		onlyfiles_txt.append(onlyfiles_txt_temp)
		onlyfiles_png.append(onlyfiles_png_temp)
	print(len(onlyfiles_txt))
	print(len(onlyfiles_png))

However when downloading the BIWI dataset my BIWI folder has only subfloders (\01,\02,\03,\04,\05).
I have downloaded the dataset from the same source you attached in the README file.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions