goodgodgd / xpt-mde-2021

VODE: Visual Odometry and Depth Estimation
BSD 2-Clause "Simplified" License
7 stars 1 forks source link

stereo drive renamer #44

Open goodgodgd opened 4 years ago

goodgodgd commented 4 years ago
from glob import glob
import shutil

def rename():
    rootpath = "/media/ian/IanBook/datasets/raw_zips/driving_stereo"
    files = glob(rootpath + "/*/*사본")
    print("files", files)
    for name in files:
        new_name = name.replace("zip의 사본", "zip")
        shutil.move(name, new_name)

if __name__ == "__main__":
    rename()
goodgodgd commented 4 years ago

waymo-open-dataset-tf-2-2-0==1.2.0