1 Star 2 Fork 1

xieyuser/loveyou

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
convert.py 418 Bytes
一键复制 编辑 原始数据 按行查看 历史
xieyuser 提交于 2023-01-13 18:05 . smaller
import os
import sys
import os.path as osp
import cv2
from glob import glob
imgs = glob(osp.join(sys.argv[1], '*'))
kvs = {}
for name, im in enumerate(imgs):
img = cv2.imread(im)
h, w = img.shape[:2]
kvs[im] = float(h/w)
print(kvs)
kvs = sorted(kvs, key=lambda x:kvs[x])
print(kvs)
for name, k in enumerate(kvs):
cv2.imwrite(f'img/{name + 1}.webp', cv2.resize(cv2.imread(k), None, fx=0.1, fy=0.1))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xieyuser/loveyou.git
[email protected]:xieyuser/loveyou.git
xieyuser
loveyou
loveyou
master

搜索帮助