vote up 8 vote down star
5

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)?

flag

61% accept rate
I'm voting this question up not only because it's interesting, but them rectangles sure are pretty. – Jreeter Jul 31 at 16:14

5 Answers

vote up 1 vote down check

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.

link|flag
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 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 at 9:31
vote up 3 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
1  
You probably mean NP-complete. – starblue Jul 31 at 16:32
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 at 16:47
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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