实践是知识的母亲,知识是生活的明灯。这篇文章主要讲述badapple制作相关的知识,希望能为你提供帮助。
badapple制作
文章图片
- 原版视频的抽帧,生成每一帧的图像
- 图像专制为字符文档
- 在控制台实现输出
//安装cv2模块:
pip install opencv-python
//这个慢(超时)可以用镜像
//os模块在python中属于内置模块,即不需要额外安装。
不知道为什么,闪屏
import cv2 as cv
import os
ascii_char = list("$@B%8&
WM#*oahkbdpqwmZO0QLCJUYXzcvunxrjft/\\|()1{}[]?-_+~<
>
i!lI;
:,\\"^`\'.")
length = len(ascii_char)
#加载视频
cap = cv.VideoCapture(\'C:/Users/Vincent/Desktop/badapple.mp4\')
while True:
#读取每一帧
hasFrame,frame = cap.read()
if not hasFrame:
break
#视频长宽
width = frame.shape[0]
height = frame.shape[1]
#转灰度图
img_gray = cv.cvtColor(frame,cv.COLOR_RGB2GRAY)
image_resize = cv.resize(img_gray,(int(width/5),int(height/15)))
text = \'\'
#遍历图片像素点
for r in image_resize:
for pixel in r:
#根据像素值,选择对应字符
text += ascii_char[int(pixel/256*length)]
text += \'\\n\'
#清屏
os.system(\'cls\')
#输出生成的字符画
print(text)
【badapple制作】
文章图片
推荐阅读
- uin-app保存图片到本地(app)
- 观点(微信小程序是APP红利时代最明确的分水岭)
- 「网易官方」极客战记(codecombat)攻略-网页开发2-消失活动-disappearing-act
- Appium自动化 - 可定位的控件属性
- appium自动识别兼容的chromedriver
- win7系统之家安装图文详细教程
- 超级详细的win7 64位旗舰版安装过程
- windows7旗舰版安装硬盘图文详细教程
- 联想g470系统重装图文详细教程