Skip to content

Instantly share code, notes, and snippets.

View scientificRat's full-sized avatar
😝
Working

Zhengyue Huang scientificRat

😝
Working
  • Tsinghua University
View GitHub Profile
@scientificRat
scientificRat / duplicate_image_finder.py
Created November 16, 2021 12:18
find duplicate images in a folder
import os
import sys
import glob
import tqdm
import json
import shutil
import pickle
import argparse
import numpy as np
from PIL import Image
@scientificRat
scientificRat / make_time_lapse.py
Created July 15, 2022 12:23
make time lapse from images
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():