This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import glob | |
import tqdm | |
import json | |
import shutil | |
import pickle | |
import argparse | |
import numpy as np | |
from PIL import Image |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import glob | |
import moviepy.editor as mpe | |
IMAGE_ROOT = '/Users/huangzhengyue/work_data/jiaolou3' | |
OUT_FILE_NAME = 'test3.mp4' | |
FPS = 12 | |
def main(): |
OlderNewer