
编解码
东山阿强
流媒体
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
BPG压缩生成残差图像
import os from PIL import Image from PIL import ImageFile ImageFile.LOAD_TRUNCATED_IMAGES = True import numpy as np os.system("mkdir bpg") os.system("mkdir png") os.system("mkdir rgb_residual") path = os.listdir('./') i = 1 for fn in path: if fn.endsw原创 2021-01-06 10:09:21 · 992 阅读 · 0 评论 -
OpenCV读取图片,DCT变换
#include <iostream> #include <string.h> #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui.hpp> #include <opencv2/core/mat.hpp> #include <opencv2/imgproc/types_c.h> #include <opencv2/imgproc/imgp原创 2020-12-11 19:27:30 · 1147 阅读 · 2 评论