Python 二叉树算法解决二维装箱问题 (2d bin-packing problem)

本文主要是介绍Python 二叉树算法解决二维装箱问题 (2d bin-packing problem),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

二维装箱问题应用领域比较多,游戏开发中主要应用于贴图合并。

最近在调研图集打包工具的算法实现,看到一种实现方式是通过二叉树算法,比较朴素且有效,则立刻写用例简单测试验证下。

测试结果:(打包后的图用随机纯色色块代替)
在这里插入图片描述

测试代码如下:

from Packer import Packer
from PIL import Image
import cv2
import os
import randomCanvas_Width = 1024
Canvas_Height = 1024
CanvasPixelColor = [255, 255, 255]
ImgPath = "imgLib"# 获取path下的所有图片对象
def getImgList(path):imagelist = []for parent, dirnames, filenames in os.walk(path):for filename in filenames:if filename.lower().endswith(('.png')):img = cv2.imread(os.path.join(parent, filename), cv2.IMREAD_UNCHANGED)imagelist.append(img)print(filename)return imagelist# 新建一张图
def newImg(width, height, r, g, b):img = Image.new('RGB', (width, height))for i in range(0, width):for j in range(0, height):img.putpixel((i, j), (r, g, b))img.save('sqr.png')return img# 在canvas上绘制纯色block
def drawBlockOnCanvas(canvasImg, x, y, w, h, r, g, b):for i in range(x, x + w):for j in range(y, y + h):canvasImg.putpixel((i, j), (r, g, b))return canvasImg# 新建画布
def drawCanvas():wallpaper = newImg(Canvas_Width, Canvas_Height, CanvasPixelColor[0], CanvasPixelColor[1], CanvasPixelColor[2])return wallpaper# 主函数
def main():# 新建一张 1024 * 1024 的画布canvas = drawCanvas()# 初始化Packer对象packer = Packer(Canvas_Width, Canvas_Height)# 读取图片sizeblocks = []rawImgList = getImgList(ImgPath)for img in rawImgList:print(img.shape)w, h, _ = img.shapeblocks.append({'w' : w, 'h' : h})# sort blocks by heightdef get_height(block):return block['h']blocks.sort(key = get_height, reverse=True)# 打包packer.fit(blocks)print("图的总数量" + str(len(blocks)))drawedCount = 0for block in blocks:print(str(block['w']) + "x" + str(block['h']))for block in blocks:print(str(block['w']) + "x" + str(block['h']))if('fit' in block):fit = block['fit']r = random.randint(0, 255)g = random.randint(0, 255)b = random.randint(0, 255)# print(block)drawBlockOnCanvas(canvas, fit['x'], fit['y'], block['w'], block['h'], r, g, b)drawedCount += 1## debug mode to show drew Img one by one# npImg = np.array(canvas)# cv2.imshow("test", npImg)# cv2.waitKey(0)# cv2.destroyAllWindows()else:print("[Error] No Fit in Block -- ")print("DrawedCount : " + str(drawedCount))canvas.save('sqr.png')canvas.show()main()

Packer类的实现:

class Packer:def __init__(self, w, h):self.root = {'x' : 0, 'y' : 0, 'w' : w, 'h' : h, 'used' : False}def fit(self, blocks):for block in blocks:node = self.findNode(self.root, block['w'], block['h'])if node:block['fit'] = self.splitNode(node, block['w'], block['h'])def findNode(self, root, w, h):if(root['used']):return self.findNode(root['right'], w, h) or self.findNode(root['down'], w, h)elif((w <= root['w']) and (h <= root['h'])):return rootelse:return Nonedef splitNode(self, node, w, h):node['used'] = Truenode['down']    = {'x' : node['x'],     'y' : node['y'] + h,    'w' : node['w'] ,        'h' : node['h'] - h,    'used' : False}node['right']   = {'x' : node['x'] + w, 'y' : node['y'],        'w' : node['w'] - w,     'h' : h,        'used' : False}return node

测试验证结论:
算法不足之处在于block中的空白区域可能没有得到很好的利用,可以后续通过递归遍历blocks中"被浪费"的区域,将区域尽可能的合并后 重新利用。

这篇关于Python 二叉树算法解决二维装箱问题 (2d bin-packing problem)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/267558

相关文章

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

Python获取中国节假日数据记录入JSON文件

《Python获取中国节假日数据记录入JSON文件》项目系统内置的日历应用为了提升用户体验,特别设置了在调休日期显示“休”的UI图标功能,那么问题是这些调休数据从哪里来呢?我尝试一种更为智能的方法:P... 目录节假日数据获取存入jsON文件节假日数据读取封装完整代码项目系统内置的日历应用为了提升用户体验,

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Python Websockets库的使用指南

《PythonWebsockets库的使用指南》pythonwebsockets库是一个用于创建WebSocket服务器和客户端的Python库,它提供了一种简单的方式来实现实时通信,支持异步和同步... 目录一、WebSocket 简介二、python 的 websockets 库安装三、完整代码示例1.

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.