【Python】ASCII-generator 将图像、文本或视频转换为 ASCII 艺术 生成字符图(测试代码)

server/2024/12/3 8:10:06/

目录

    • 预览效果
    • 安装环境
    • 报错分析
    • 基本例程
    • 总结


欢迎关注 『Python』 系列,持续更新中
欢迎关注 『Python』 系列,持续更新中

预览效果

  • 原图
    在这里插入图片描述

  • 黑白图
    在这里插入图片描述

  • 彩色图

在这里插入图片描述

安装环境

  • 拉取代码
https://github.com/vietnh1009/ASCII-generator
pip install opencv-python numpy Pillow

报错分析

在这里插入图片描述

AttributeError: 'FreeTypeFont' object has no attribute 'getsize'

getsize这个方法是老版本的 pillow解决方法有2中

  • 法1:降级 Pillow(推荐)
pip install Pillow==9.5.0

降级后运行有警告,不用理会正常运行
在这里插入图片描述

  • 法2(不推荐,可能还要改哪里):把所有代码中的getsize替换成.getbbox
    我试了一下 发现不知道为啥效果变差了,宽度不对应了,效果变差了

基本例程

img2img_color.py

python">"""
@author: Viet Nguyen <nhviet1009@gmail.com>
"""
import argparseimport cv2
import numpy as np
from PIL import Image, ImageDraw, ImageOps
from utils import get_datadef get_args(inputImg='input.jpg',outImg='output.jpg'):parser = argparse.ArgumentParser("Image to ASCII")parser.add_argument("--input", type=str, default="data/"+inputImg, help="Path to input image")parser.add_argument("--output", type=str, default="data/"+outImg, help="Path to output text file")parser.add_argument("--language", type=str, default="english")parser.add_argument("--mode", type=str, default="standard")parser.add_argument("--background", type=str, default="black", choices=["black", "white"],help="background's color")parser.add_argument("--num_cols", type=int, default=300, help="number of character for output's width")parser.add_argument("--scale", type=int, default=2, help="upsize output")args = parser.parse_args()return argsdef main(opt):if opt.background == "white":bg_code = (255, 255, 255)else:bg_code = (0, 0, 0)char_list, font, sample_character, scale = get_data(opt.language, opt.mode)num_chars = len(char_list)num_cols = opt.num_colsimage = cv2.imread(opt.input, cv2.IMREAD_COLOR)image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)height, width, _ = image.shapecell_width = width / opt.num_colscell_height = scale * cell_widthnum_rows = int(height / cell_height)if num_cols > width or num_rows > height:print("Too many columns or rows. Use default setting")cell_width = 6cell_height = 12num_cols = int(width / cell_width)num_rows = int(height / cell_height)char_width, char_height = font.getsize(sample_character)out_width = char_width * num_colsout_height = scale * char_height * num_rowsout_image = Image.new("RGB", (out_width, out_height), bg_code)draw = ImageDraw.Draw(out_image)for i in range(num_rows):for j in range(num_cols):partial_image = image[int(i * cell_height):min(int((i + 1) * cell_height), height),int(j * cell_width):min(int((j + 1) * cell_width), width), :]partial_avg_color = np.sum(np.sum(partial_image, axis=0), axis=0) / (cell_height * cell_width)partial_avg_color = tuple(partial_avg_color.astype(np.int32).tolist())char = char_list[min(int(np.mean(partial_image) * num_chars / 255), num_chars - 1)]draw.text((j * char_width, i * char_height), char, fill=partial_avg_color, font=font)if opt.background == "white":cropped_image = ImageOps.invert(out_image).getbbox()else:cropped_image = out_image.getbbox()out_image = out_image.crop(cropped_image)out_image.save(opt.output)if __name__ == '__main__':inputImg='csdn.png'outImg='csdn-output.png'opt = get_args(inputImg,outImg)main(opt)

总结

大家喜欢的话,给个👍,点个关注!继续跟大家分享敲代码过程中遇到的问题!

版权声明:

发现你走远了@mzh原创作品,转载必须标注原文链接

Copyright 2024 mzh

Crated:2024-11-04

欢迎关注 『Python』 系列,持续更新中
欢迎关注 『Python』 系列,持续更新中
【Python安装第三方库一行命令永久提高速度】
【使用PyInstaller打包Python文件】
【更多内容敬请期待】



http://www.ppmy.cn/server/146962.html

相关文章

ElasticSearch学习笔记七:ES查询(二)

一、前言 在前面的文章我们学习了ES的一些基本查询&#xff0c;同时用Java全部实现了一遍&#xff0c;今天我们继续深入学习一下ES的查询。 二、Term级别查询 在 Elasticsearch 中&#xff0c;Term 级别查询用于精确匹配字段值。与全文搜索不同&#xff0c;Term 级别查询不会…

Xcode——LLDB Debugger 与断点调试学习

Xcode——LLDB Debugger 与断点调试学习 文章目录 Xcode——LLDB Debugger 与断点调试学习前言介绍打开LLDB命令helpprintexpression 断点调试异常断点——Exception Breakpoint标志断点——Symbolic Breakpointwatchpointset 断点行为condition条件判断 最后参考文章 前言 在…

linux查询进程的启动时间

说到查询进程的启动时间&#xff0c;你的第一反应肯定是ps -p $pid -o lstart&#xff0c;但是ps 命令通常会通过访问 proc 文件系统来收集进程的信息&#xff0c;它本身是一个外部命令&#xff0c;执行时需要进行进程管理、格式化输出等额外的操作&#xff0c;这会消耗更多的 …

Jmeter 接口测试常见场景

csv 中读取账号密码登录 压测登录接口&#xff0c;通常需要循环读取账号密码&#xff0c;使用 jmeter 处理该需求一般会采用 csv 文件设置来读取账号密码&#xff0c;信息文件&#xff08;user_info.txt&#xff09;示例如下&#xff1a; 信息文件中使用英文逗号分割账号、密码…

【LC】35. 搜索插入位置

题目描述&#xff1a; 给定一个排序数组和一个目标值&#xff0c;在数组中找到目标值&#xff0c;并返回其索引。如果目标值不存在于数组中&#xff0c;返回它将会被按顺序插入的位置。 请必须使用时间复杂度为 O(log n) 的算法。 示例 1: 输入: nums [1,3,5,6], target …

Flink常见面试题

1、Flink 的四大特征&#xff08;基石&#xff09; 2、Flink 中都有哪些 Source&#xff0c;哪些 Sink&#xff0c;哪些算子&#xff08;方法&#xff09; 预定义Source 基于本地集合的source&#xff08;Collection-based-source&#xff09; 基于文件的source&#xff08;…

【Leetcode 每日一题】LCR 190. 加密运算

LCR 190. 加密运算 计算机安全专家正在开发一款高度安全的加密通信软件&#xff0c;需要在进行数据传输时对数据进行加密和解密操作。假定 dataA 和 dataB 分别为随机抽样的两次通信的数据量&#xff1a; 正数为发送量负数为接受量0 为数据遗失 请不使用四则运算符的情况下实…

分布式资源调度——yarn 概述(资源调度基本架构和高可用的实现)

此文章是学习笔记&#xff0c;图片均来源于B站&#xff1a;哈喽鹏程 yarn详细介绍 1、yarn 简介1.1 yarn的简介1.2 yarn 的基本架构1.3. yarn 的高可用 2、yarn 调度策略、运维、监控2.1 yarn 的调度策略2.1.1 FIFO scheduler(先进先出)2.1.2 容量调度2.1.3 公平调度 2.2 yarn…