当前位置 : 主页 > 编程语言 > python >

福利!Python制作动态字符画(附源码)

来源:互联网 收集:自由互联 发布时间:2022-06-15
Python爬虫、数据分析、网站开发等案例教程视频免费在线观看 首先,也是最重要的,先放源码 from PIL import Image as im from tkinter import * import cv2 # 随便打 codeLib = '''*.1''' count = len(codeLib) d


Python爬虫、数据分析、网站开发等案例教程视频免费在线观看

首先,也是最重要的,先放源码

from PIL import Image as im
from tkinter import *
import cv2

# 随便打
codeLib = '''*.1'''
count = len(codeLib)


def transform(image_file):
codePic = ''
for h in range(0, image_file.size[1]):
for w in range(0, image_file.size[0]):
g, r, b = image_file.getpixel((w, h))
gray = int(r * 0.299 + g * 0.587 + b * 0.114)
codePic = codePic + codeLib[int(((count - 1) * gray) / 256)]
codePic = codePic + '\r\n'
return codePic


def image2char(image_file):
image_file = image_file.resize((int(image_file.size[0] * 0.16), int(image_file.size[1] * 0.06))) # 调整图片大小
return transform(image_file), image_file.size[0], image_file.size[1]


def frame2image(cap, i):
cap.set(cv2.CAP_PROP_POS_FRAMES, i)
_, b = cap.read()
image = im.fromarray(cv2.cvtColor(b, cv2.COLOR_BGR2RGB))
return image


def gui(path):
cap = cv2.VideoCapture(path)
root = Tk()
t = frame2image(cap, 0)
_, w, h = image2char(t)
text = Text(root, width=w, height=h)
text.pack()
framenum = int(cap.get(7))
for i in range(framenum):
image = frame2image(cap, i)
content, _, _ = image2char(image)
text.insert(INSERT, content)
root.update()
text.delete(0.0, END)


if __name__ == '__main__':
gui(r'C:\Users\Administrator\Desktop\油性极大.mp4')

然后,选择一个短视频

福利!Python制作动态字符画(附源码)_数据分析

最后选择视频的路径,修改代码的文件路径,在运行代码

福利!Python制作动态字符画(附源码)_数据分析_02

代码有什么不懂的地方可以在下面评论哟


【本文来源:美国服务器 https://www.68idc.cn 复制请保留原URL】
上一篇:小案例-判断用户输入密码级别
下一篇:没有了
网友评论