You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

cache.py 201 B

1234567891011
  1. import cv2
  2. import os
  3. import hashlib
  4. def verticalMappingToFolder(image):
  5. name = hashlib.md5(image.data).hexdigest()[:8]
  6. print(name)
  7. cv2.imwrite("./cache/finemapping/"+name+".png",image)