上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页
摘要: JPEG Image Quality in PIL Introduction The other day, I was haunted by a bug and found that it was an issue with the image quality saved by Pillow aft 阅读全文
posted @ 2023-04-27 14:18 梁君牧 阅读(85) 评论(0) 推荐(0)
摘要: JPG 100 vs JPG 20: What’s The Difference? So you’re into photography and while you’re showing some skill and getting a handle on camera settings for t 阅读全文
posted @ 2023-04-26 21:36 梁君牧 阅读(574) 评论(0) 推荐(0)
摘要: ![image](https://img2023.cnblogs.com/blog/1090400/202304/1090400-20230425190516678-1221253720.png) 阅读全文
posted @ 2023-04-25 19:05 梁君牧 阅读(19) 评论(0) 推荐(0)
摘要: ![](https://qiniuy.tzle1.com/FkY-XT-FqWUCfGk8VDcWMCJB7d40) 阅读全文
posted @ 2023-04-24 20:35 梁君牧 阅读(26) 评论(0) 推荐(0)
摘要: JPEG文件字段 JPEG编解码 目前有较多的图像编码标准,如jpeg、bmp、gif、png、webp、heif,我们这里先说jpeg部分,这个编解码标准诞生于20世纪90年代,JPEG标准仅仅说明定义了codec部分,也就是图片如何压缩为字节流以及重新解码为图片的过程,标准没有涉及到文件的存储格 阅读全文
posted @ 2023-04-24 20:29 梁君牧 阅读(343) 评论(0) 推荐(0)
摘要: 令人拍案叫绝的JPEG图像压缩原理 前 言: 从事各行各业的大佬们,我相信,你们对图像格式是不陌生的,有很多种图像格式,比如,png,jpeg等等,但是你发现,同一张图片,当我们把他用工具变成各种其他格式时,其在计算机文件系统显示的文件大小各不一样,但是当你打开显示时,从视觉角度上看,几乎看不出差距 阅读全文
posted @ 2023-04-24 20:25 梁君牧 阅读(1498) 评论(0) 推荐(0)
摘要: JPEG是Joint Photographic Exports Group的英文缩写,中文称之为联合图像专家小组。该小组隶属于ISO国际标准化组织,主要负责定制静态数字图像的编码方法,即所谓的JPEG算法。 JPEG专家组开发了两种基本的压缩算法、两种熵编码方法、四种编码模式。如下所示: 压缩算法: 阅读全文
posted @ 2023-04-24 20:17 梁君牧 阅读(3404) 评论(0) 推荐(0)
摘要: ![](https://qiniuy.tzle1.com/FuiOiZy9KYLKg8rDEp6RYR-dgabS) 阅读全文
posted @ 2023-04-24 15:22 梁君牧 阅读(88) 评论(0) 推荐(0)
摘要: ![](https://qiniuy.tzle1.com/FnFxH9DoPJ9w3yXJeOK2Jxi1QXJ0) 阅读全文
posted @ 2023-04-24 15:21 梁君牧 阅读(84) 评论(0) 推荐(0)
摘要: ![](https://qiniuy.tzle1.com/FjD7IlRWQRf4zbAt-ohj3MMzWKvj) 阅读全文
posted @ 2023-04-24 15:20 梁君牧 阅读(18) 评论(0) 推荐(0)
摘要: ![](https://qiniuy.tzle1.com/FmWBiHLcEm-aLsHnt0rPn7bNHcxf) 阅读全文
posted @ 2023-04-24 15:17 梁君牧 阅读(13) 评论(0) 推荐(0)
摘要: Photo Forgery Detection Module (discontinued) This module is discontinued. Photo Manipulation (Forgery) Detection Are digital images submitted as cour 阅读全文
posted @ 2023-04-24 14:58 梁君牧 阅读(25) 评论(0) 推荐(0)
摘要: 一些CV的小工具代码 切Video为images """ Convert each frame in a anime video to 256 x 256 images """ import cv2 import os import numpy as np import argparse from 阅读全文
posted @ 2023-04-13 21:34 梁君牧 阅读(75) 评论(0) 推荐(0)
摘要: Todo MTCNN项目交付 请假 剪头发 https://www.semanticscholar.org/search?q=Learning%20to%20Resize%20Images%20for%20Computer%20Vision%20Tasks&sort=relevance 剪辑视频ai 阅读全文
posted @ 2023-04-13 21:20 梁君牧 阅读(24) 评论(0) 推荐(0)
摘要: 图像Resize方式对深度学习模型效果的影响 转自知乎图像Resize方式对深度学习模型效果的影响 在基于卷积神经网络的应用过程中,图像Resize是必不可少的一个步骤。通常原始图像尺寸比较大,比如常见监控摄像机出来的是1080P高清或者720P准高清画面,而网络模型输入一般没有这么大,像Yolo系 阅读全文
posted @ 2023-04-13 20:19 梁君牧 阅读(265) 评论(0) 推荐(0)
摘要: 给文件批量重命名 import os dir_root = r'D:\篡改检测数据集\casia_test_val\pred' fil_list = os.listdir(dir_root) fil_list.sort() cnt = 0 for i in fil_list: cnt+=1 file 阅读全文
posted @ 2023-03-02 16:54 梁君牧 阅读(46) 评论(0) 推荐(0)
摘要: 代码示例 from random import random from time import sleep from tqdm import tqdm epochs = 2 train_data_num = 10 for i in range(epochs): with tqdm(total=tra 阅读全文
posted @ 2023-02-26 13:05 梁君牧 阅读(1429) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2022-12-12 13:11 梁君牧 阅读(12) 评论(0) 推荐(0)
摘要: 使用opencv找出图像中纹理密集的地方 __authur__ = 'tangxi.zq' __time__ = '2019-04-27' import numpy as np import cv2 import os import time ''' 找寻图像中纹理丰富的区域 ''' def cal 阅读全文
posted @ 2022-12-01 15:36 梁君牧 阅读(227) 评论(0) 推荐(0)
摘要: 转自github 背景 去年 5 月曾经写了一篇文章介绍了下 Lex Fridman 大佬的日常生活安排,后续我也根据他的方法对自己的日常生活做了一系列规范和改进。这一年整体实行下来,效果还是非常显著的,本文的最后会对我的一些实践以及借助的工具做一些分享。 最近几个月,偶然在油管上看到了个 Rich 阅读全文
posted @ 2022-12-01 15:24 梁君牧 阅读(407) 评论(0) 推荐(1)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 14 下一页