Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ive got a bunch of rectangular objects which I need to pack into the smallest space possible (the dimensions of this space should be powers of two).

I'm aware of various packing algorithms that will pack the items as well as possible into a given space, however in this case I need the algorithm to work out how large that space should be as well.

Eg say Ive got the following rectangles

  • 128*32
  • 128*64
  • 64*32
  • 64*32

They can be packed into a 128*128 space

 _________________
|128*32          |
|________________|
|128*64          |
|                |
|                |
|________________|
|64*32  |64*32   |
|_______|________|

However if there was also a 160*32 and a 64*64 one it would need a 256*128 space

 ________________________________
|128*32          |64*64  |64*32  |
|________________|       |_______|
|128*64          |       |64*32  |
|                |_______|_______|
|                |               |
|________________|___            |
|160*32              |           |
|____________________|___________|

What algorithms are there that are able to pack a bunch of rectangles and determine the required size for the container (to a power of 2, and within a given maximum size for each dimension)?

share|improve this question
30  
I'm voting this question up not only because it's interesting, but them rectangles sure are pretty. – Jreeter Jul 31 '09 at 16:14
1  
+1 this is exactly the question I would have asked for packing font glyphs into a texture, but better presented than anything I would have done – Grant Peters Mar 31 '10 at 0:18
Isn't the second solution not optimal? Shouldn't it be 128 by 224? – mvid Aug 20 '10 at 22:46
"the dimensions of this space should be powers of two" So it makes no difference, for what this was/is for I can not assume non-power of two is supported unconditionally by the underlying hardware. – Fire Lancer Aug 21 '10 at 9:02
1  
Anyway it made the algorithm simpler in the end(try to fit it all in 32x32, if nto then try 64x32, then 64x64, 128x64, etc) :) – Fire Lancer Aug 21 '10 at 9:04
show 1 more comment

8 Answers

up vote 14 down vote accepted

The quick and dirty first pass solution is always a great one to start with, as a comparison if nothing else.

Greedy placement from large to small.

Put the largest rectangle remaining into your packed area. If it can't fit anywhere, place it in a place that extends the pack region as little as possible. Repeat until you finish with the smallest rectangle.

It's not perfect at all but it's easy and a nice baseline. It would still pack your original example perfectly, and give you an equivalent answer for the second as well.

share|improve this answer
I was just playing with something like that on a bit of paper, right now looks fairly optimal in most cases, even without rotating the rectangles or anything – Fire Lancer Jul 31 '09 at 16:37
I implemented it and run a bunch of test data through it, seems to do a pretty good job only leaving a little wasted data. Now I just need to rewrite my implementation to be more efficient than a linear search for each rect through the available space checking each pixel is that point is blocked (against all the existing rects)... – Fire Lancer Aug 5 '09 at 9:31
1  
Thanks a bunch! Was looking for a solution like this for my project. – Dmitri Farkov Jan 15 '12 at 3:55

Have a look at packing problems. I think yours falls under '2D bin packing.' You should be able to learn a lot from solutions to that and other packing problems.

Also see: Packing rectangular image data into a square texture.

share|improve this answer
Here's another nice example of an optimizing rectangle-packing algorithm: codeproject.com/Articles/210979/… – Anderson Green Dec 29 '12 at 2:01

There is extensive literature on this problem. A good greedy heuristic is to place rectangles from largest area to smallest in the first available position towards the bottom and left of the container. Think of gravity pulling all of the items down to the lower left corner. For a description of this google "Chazelle bottom left packing".

For optimal solutions, the state-of-the-art techniques can pack over 20 rectangles in a few seconds. Huang has an algorithm that separates the problem of finding the smallest enclosing bounding box from the problem of deciding whether or not a set of rectangle can fit in a bounding box of a specific size. You give his program a set of rectangles, and it tells you the smallest enclosing bounding box required to pack them.

For your case, your outer loop should iterate from the smallest possible bounding box upward (with the width and height successively increasing by powers of two). For each of these bounding boxes, test to see if you can find a packing for your rectangles. You will get a bunch of "no" answers, until the first "yes" answer, which will be guaranteed to be the optimal solution.

For the inner loop of your algorithm -- the one that answers "yes" or "no" to a bounding box of specific size, I would look up the Huang reference and just implement his algorithm. He includes a lot of optimizations on top of the basic algorithm, but you only really need the basic meat and potatoes. Since you want to handle rotations, at every branch point during your search, simply try both rotations and backtrack when both rotations do not result in a solution.

share|improve this answer

See http://www.csc.liv.ac.uk/~epa/surveyhtml.html for a survey of solutions, there is a trade-off between implementation complexity/time and optimality, but there is a wide range of algorithms to choose from.

share|improve this answer

A general solution is non-trivial (math speak for completely ****ing impossible)
Generally people use a genetic algorithm to try possible combinations but you can do reasonably well by justing putting the largest shape in first and then trying different places for the next largest and so on.

share|improve this answer

Check out this really great article that describes step by step how to develop such an algorithm. It has a C# sample project as well. I wish it was Objective-C, but oh well.

See http://www.codeproject.com/Articles/210979/Fast-optimizing-rectangle-packing-algorithm-for-bu

share|improve this answer

I'm fairly certain that this is a NP problem, so you'd have to implement a backtracking algorithm that tries every possible combination. The good news is that because of the need to pack 2D rectangles in a limited 2D space, you can prune a lot of possibilities early on, so it might not be THAT bad.

share|improve this answer
2  
You probably mean NP-complete. – starblue Jul 31 '09 at 16:32
2  
Well, if it's NP complete, then it's easy to solve, just solve an equivalent instance of the travelling salesman, and there you go. But it's trivial to show that as posed, it's not, since NP-complete problems are decision problems (you get back yes/no answers), and have a polynomial time verfication algorithm. The question "is there a arrangement of rectangles a,b,c... that take up less area than 256*128 could be NP-complete. – Eclipse Jul 31 '09 at 16:47

This sounds like a university problem. I don't know what your time constraints are or how big your problem size is but you can look at the textbook solution for the Knapsack problem (it is 1d but related). Your packing problem can be solved for small cases with branch and bound: - come up with a way to bound the best area you can pack your shapes into - find an iterator which branches overall possible ways to pack them - if your bound tells you that the best solution you can find from a current branch is worse than a solution you already have, cut the search.

share|improve this answer
3  
No. This sounds like a Game Development Problem. – AttackingHobo Sep 1 '11 at 8:46
For me it sounds like a Web Development Problem. Perhaps we should stop guessing what everyone else is trying to do? – nailer Dec 10 '12 at 9:48
This is very similar to a USACO problem. Actually a more general version of the IOI '95 one cerberus.delos.com:790/usacoprob2?a=SbnrQCzCPdS&S=packrec – arviman Mar 10 at 12:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.