摘要:
[toc] 1.图片缩放 注意 256x256的×,键盘好像敲的是错的 That's not an ASCII x (0x78) in your convert line that's × (MULTIPLICATION SIGN 0xd7). 2. 标签制作 在/media/data_2/big 阅读全文
摘要:
``` # coding=utf-8 import os import os import cv2 import math import numpy as np from PIL import Image from PIL import ImageEnhance """ 1、对比度:白色画面(最亮时)下的亮度除以黑色画面(最暗时)下的亮度; 2、色彩饱和度::彩度除以明度,指色彩的鲜艳程度,也称... 阅读全文
摘要:
1.遍历目录 os.walk() import os for root, dirs, files in os.walk(path): for name in files: print(os.path.join(root, name)) for name in dirs: print(os.path. 阅读全文