
python
fp-growth
冲冲冲!
展开
-
Python添加清华源和豆瓣源
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/cond.原创 2022-02-18 09:21:43 · 2657 阅读 · 0 评论 -
python批量png转jpg
只需要修改png的文件夹地址和转换后jpg的保存地址即可使用。 # png -> jpg from PIL import Image import cv2 as cv import os def PNG_JPG(png_path, jpg_path): img = cv.imread(png_path, 0) w, h = img.shape[::-1] img = Image.open(png_path) img = img.resize((int(w / 2原创 2020-09-23 10:43:13 · 387 阅读 · 0 评论