Rectangle Packing: An Incredibly Difficult Problem

Sometimes problems can be much more difficult than they appear to be.

It often happens that I have an idea for a sketch, which in my mind, seems relatively simple to implement; however, when the time comes and I'm free to start working on it, I have literally no clue where to even begin. This is usually because I severly underestimated the complexity of the problem at hand.

For instance, recently I've stumbled across a number of P5JS and Processing sketches, that try to fit as many simple shapes as possible, where each shape has a different size, into an area of limited size. This is usually called packing, or more comonly known as packing problems. It seemed worthwhile to learn a little bit more about them.

Packing Problems

A little bit further down the rabbit hole, I find out that packing problems are actually a quite difficult family of mathematical optimization problems. This doesn't discourage me however, but rather makes the problem even more exciting as well as challenging. Wikipedia explains the problem much more eloquently than what I'm capable of:

Packing problems are a class of optimization problems in mathematics that involve attempting to pack objects together into containers. The goal is to either pack a single container as densely as possible or pack all objects using as few containers as possible. [...] Usually the packing must be without overlaps between goods and other goods or the container walls. In some variants, the aim is to find the configuration that packs a single container with the maximal density. More commonly, the aim is to pack all the objects into as few containers as possible.

Essentially, we'll want to jampack the largest possible number of items into the least amount of space. This type of problem is usually studied in the context where you have multiple bins or containers which you want to fill optimally with the items at hand, however we're only going to concern ourselves with the case were we have one bin (which is not to be confused with the knapsack problem, which might be a topic for a future post).

Why is Rectangle Packing so difficult

Optimization problems are generally not my cup of tea, and even though I've had to take some courses on algorithmic complexity as well as convex optimization during my time at university, it's usually way over my head, however I will attempt to explain succinctly.

Let's have look at some trivial examples. How would you optimally place a handful of rectangles, such that they take the least amount of space possible? For a small number of rectangles it's probably quiet easy to do by hand:

Now consider the case where you have to arrange more rectangles, it'll probably take you a lot more time to do so by trial and error, and you can see that some of the examples below are far from being optimal:

You can see that the complexity of the problem scales with it's size. This innocent looking problem, reveals itself to be a monstrosity of a conundrum. Another problem is, can we even check that our arrangment is optimal? Well, technically yes, however, there is no known strategy to finding that optimal solution. In fact bin packing problems are at least NP-hard, and the best we can do currently is solving them with heuristic methods that find solutions relatively quick. The literature on packing problems is quite extensive, one really interesting paper on the topic is 'A Thousand Ways to Pack the Bin - A Practical Approach to Two-Dimensional Rectangle Bin Packing' by Jukka Jylänki, which is a relatively old paper from 2010. So you can see that I'm probably not going to be able to create a better algorithm than what the literature has already suggested.

Another interesting paper was quite old 'The bottom-left bin-packing heuristic: An efficient Implementation' from 1983 by Bernard Chazelle. And I do have a weak spot for old papers, especially when they have figures that must have taken a lot of effort to make back then. I found it through this heated stackoverflow thread that was also inquiring about a solution for the rectangle packing problem, and is as of now more than 11 years old.

Creating the visualizations

After staring at my laptop screen for more than two hours with frustration, trying to implement some simple version of a greedy heuristic algorithm that will neatly pack my rectangles, I ultimately gave up and started looking for already implemented algorithms.

Python rectpacker

from rectpack import newPacker
rectangles = [(50,50),(100,50),(25,45),(80,60),(40,60),(40,30)]
bins = [(200, 200)]
packer = newPacker()
Add the rectangles to packing queue
for r in rectangles:
packer.add_rect(*r)
Add the bins where the rectangles will be placed
for b in bins:
packer.add_bin(*b)
Start packing
packer.pack()
import matplotlib.pyplot as plt
from matplotlib import patches
output = []
for index, abin in enumerate(packer):
bw, bh  = abin.width, abin.height
print('bin', bw, bh, "nr of rectangles in bin", len(abin))
fig = plt.figure()
ax = fig.add_subplot(111, aspect='equal')
for rect in abin:
x, y, w, h = rect.x, rect.y, rect.width, rect.height
output.append([x,y,w,h])
plt.axis([0,bw,0,bh])
print('rectangle', w,h)
ax.add_patch(
patches.Rectangle(
(x, y),  # (x,y)
w,          # width
h,          # height
facecolor="#00ffff",
edgecolor="black",
linewidth=3
)
)
fig.savefig("rect_%(index)s.png" % locals(), dpi=144, bbox_inches='tight')
printing the rectangle coordinates to plot them in P5JS

If you'd like to use different packing algorithms, you can simply import them as such:

import rectpack.guillotine as guillotine
packer = newPacker(pack_algo=guillotine.GuillotineBafSas)

The framework and the list of the supported algorithms can be found here

Visualizing it in P5JS

Even though I love matplotlib, I'm not a big fan of the rectangles look, hence I've used P5JS to visualize them, which gives us some more flexibility in the appearance.

var listOfColors = ["#01295f","#22547b","#437f97","#64895e","#849324",
				"#c2a31a","#ffb30f","#fe6415","#fd151b","#fd2a30"]
var rectangles = [[0, 0, 250, 250], [250, 0, 100, 200], [250, 200, 100, 200]]
class Item {
constructor(x, y, w, h, c) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
this.c = listOfColors[int(random(0, listOfColors.length))];
}
display() {
strokeWeight(2)
fill(this.c);
rect(this.x, this.y, this.w, this.h);
}
}
class Pack {
constructor(x, y, w, h, numItems) {
this.x = x;
this.y = y;
this.w = w;
this.h = h;
this.c = 0;
this.numItems = rectangles.length;
this.items = [];

for (let i = 0; i < this.numItems; i++) {
  this.items.push(new Item(rectangles[i][0],
                           rectangles[i][1],
                           rectangles[i][2],
                           rectangles[i][3]))
}

}
sortByLargestArea() {
while (this.items.length > 0) {
console.log(this.items.length)
var largestArea = 0
var largestAreaIndex = 0
for (let i = 0; i < this.items.length; i++) {
if (this.items[i].w * this.items[i].h > largestArea) {
largestArea = this.items[i].w * this.items[i].h;
largestAreaIndex = i;
}
}
this.itemsDone.push(this.items.splice(largestAreaIndex, 1)[0]);
}
}
display() {
for (let i = 0; i < this.items.length; i++) {
this.items[i].display();
}
}
}
function setup() {
createCanvas(500, 500);
packer = new Pack(0, 0, 100, 100, 10);
}

And this pretty much sums up the post, if you've enjoyed reading this post as much as I enjoyed writing it, feel free to leave a comment or subscribing to my mailing list. Otherwise, check out some other posts, who knows, maybe you'll find something that interests you! Cheers!