Python 3 使用Pillow生成漂亮的分形树图片
作者:醉落红尘 时间:2022-05-03 14:53:23
该程序通过绘制树干(最初是树;后来是树枝)并递归地添加树来绘制“树”。 使用Pillow。
利用递归函数绘制分形树(fractal tree),分形几何学的基本思想:客观事物具有自相似的层次结构,局部与整体在形态、功能、信息、时间、空间等方面具有统计意义上的相似性,成为自相似性。自相似性是指局部是整体成比例缩小的性质。
版本:Python 3
# Adapted from http://rosettacode.org/wiki/Fractal_tree#Python
# to parameterise, and add colour.
# http://pillow.readthedocs.org/
# Author: Alan Richmond, Python3.codes, and others (Rosettacode)
import math, colorsys
from PIL import Image, ImageDraw
spread = 17 # how much branches spread apart
width, height = 1000, 800 # window size
maxd = 12 # maximum recursion depth
len = 9.0 # branch length factor
# http://pillow.readthedocs.org/en/latest/reference/Image.html
img = Image.new('RGB', (width, height))
# http://pillow.readthedocs.org/en/latest/reference/ImageDraw.html
d = ImageDraw.Draw(img)
# This function calls itself to add sub-trees
def drawTree(x1, y1, angle, depth):
if depth > 0:
# compute this branch's next endpoint
x2 = x1 + int(math.cos(math.radians(angle)) * depth * len)
y2 = y1 + int(math.sin(math.radians(angle)) * depth * len)
# https://docs.python.org/2/library/colorsys.html
(r, g, b) = colorsys.hsv_to_rgb(float(depth) / maxd, 1.0, 1.0)
R, G, B = int(255 * r), int(255 * g), int(255 * b)
# draw the branch
d.line([x1, y1, x2, y2], (R, G, B), depth)
# and append 2 trees by recursion
drawTree(x2, y2, angle - spread, depth - 1)
drawTree(x2, y2, angle + spread, depth - 1)
# Start drawing!
drawTree(width / 2, height * 0.9, -90, maxd)
img.show()
img.save("www.linuxidc.com.png", "PNG")
效果图如下:
总结
以上所述是小编给大家介绍的Python 3 使用Pillow生成漂亮的分形树图片网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
来源:https://www.linuxidc.com/Linux/2019-12/161794.htm
标签:python,分形树,图片
0
投稿
猜你喜欢
Thinkphp5.0 框架使用模型Model添加、更新、删除数据操作详解
2024-06-07 15:35:37
详解Python3迁移接口变化采坑记
2022-12-25 14:29:49
Python脚本实现代码行数统计代码分享
2023-02-26 00:24:13
python手写均值滤波
2022-03-16 20:53:19
Python搜索引擎实现原理和方法
2023-06-26 05:35:32
ubuntu下在docker中安装mysql5.6 的方法
2024-01-23 08:35:30
python清除字符串里非数字字符的方法
2023-08-12 02:47:32
asp生成带日期的随机数
2008-09-03 13:13:00
Python深度强化学习之DQN算法原理详解
2023-03-05 12:02:51
conda与jupyter notebook kernel核环境不一致的问题解决
2021-07-03 15:43:02
Mysql慢查询操作梳理总结
2024-01-26 13:37:49
Python读取大型数据文件的6种方式汇总
2021-06-29 12:19:33
浅谈PHP错误类型及屏蔽方法
2023-11-23 10:26:46
Python聚类算法之DBSACN实例分析
2021-03-26 00:11:10
Python 数据可视化超详细讲解折线图的实现
2023-06-06 14:49:18
Python中input()函数的用法实例小结
2021-09-04 18:42:59
基于Python词云分析政府工作报告关键词
2022-12-23 12:01:21
py中的目录与文件判别代码
2023-06-01 03:32:06
详解python数值与字符串高级用法
2021-08-07 15:05:52
通过T_sql语句向其中一次填入一条数据或一次填入多条数据的方式填充数据
2012-11-30 19:55:34