Skip to content ↓

The chore of packing just got faster and easier

A new computational method facilitates the dense placement of objects inside a rigid container.
Press Inquiries

Press Contact:

Rachel Gordon
Phone: 617-258-0675
MIT Computer Science and Artificial Intelligence Laboratory
Close
Small plasticky objects of myriad shapes and sizes form a colorful cube with very little wasted space. An inset shows a close-up of perfectly packed doodads and gewgaws.
Caption:
An MIT-led team developed a novel packing algorithm to search for placement locations within a given object.
Credits:
Image courtesy of the researchers.

In 1611, Johannes Kepler — known for his laws of planetary motion — offered a solution to the question concerning the densest possible way to arrange equal-sized spheres. The famed astronomer took on this problem when asked how to stack cannonballs so as to take up the least amount of space. Kepler concluded that the best configuration is a so-called face-centered cubic lattice — an approach commonly used in grocery stores for displaying oranges: Every cannonball should rest in the cavity left by the four cannonballs (lined up in a tight, two-by-two square) lying directly below it. This was merely a conjecture, however, that was not proven until almost 400 years later by a University of Michigan mathematician.

While that settled the issue of uniform sphere packing, the more general problem, regarding the optimal way of positioning 3D objects of varied sizes and shapes, is still unsolved. This problem, in fact, is classified as NP-hard, which means it cannot be solved exactly — or even approximately, to a high degree of precision — without requiring absurdly long computational times that could take years or decades, depending on the number of pieces that need to be fit into a confined space.

Nevertheless, there has been some major progress, not in the form of a mathematical proof but rather through a new computational methodology that makes this previously unwieldy task more tractable. A team of researchers from MIT and Inkbit (an MIT spinout company based in Medford, Massachusetts), headed by Wojciech Matusik, an MIT professor and Inkbit co-founder, is presenting this technique, which they call “dense, interlocking-free and Scalable Spectral Packing,” or SSP, this August at SIGGRAPH 2023 — the world’s largest conference on computer graphics and interactive techniques. An accompanying open-access paper, written by Qiaodong Cui of Inkbit, MIT graduate student Victor Rong SM ’23, Desai Chen PhD ’17 (also of Inkbit), and Matusik — will be published next month in the journal ACM Transactions on Graphics.

 Looping animation in which one by one, items are stacked on a tray. Large objects are placed first, followed by smaller objects. At the bottom, a tiny visual list of all of the objects is seen, with each object disappearing from this list as it is added to the larger tray animation.
A new AI system from MIT shows how it would optimize the packing of a set of objects into a tray.

Credit: Image courtesy of the researchers.

The first step in SSP is to work out an ordering of solid 3D objects for filling a fixed container. One possible approach, for example, is start with the largest objects and end with the smallest. The next step is to place each object into the container. To facilitate this process, the container is “voxelized,” meaning that it is represented by a 3D grid composed of tiny cubes or voxels, each of which may be just a cubic millimeter in size. The grid shows which parts of the container — or which voxels — are already filled and which are vacant.

The object to be packed is also voxelized, again represented by an agglomeration of cubes having the same size as those in the container. To figure out the available space for this object, the algorithm then computes a quantity called the collision metric at each voxel. It works by placing the center of the object at every voxel in the container and then counting the number of occupied voxels the object overlaps, or “collides,” with. The object can only be placed in locations where the overlap is zero — in other words, where there are no collisions.

The next step is to sift through all the possible placements and determine the best available position to put the object. For this task, the researchers compute another metric at each voxel, which is designed to locally maximize the packing density. This metric measures the gaps between the object and the container wall — or between the object that’s being moved and those objects already situated within the container. If the object is placed in the very center, for example, the metric would likely assign a high value. The goal, however, is to minimize gaps between objects, and that can be achieved by putting the object where the metric value is the lowest. “It’s kind of like the game Tetris,” Matusik explains. “You want to leave as little empty space as possible.”

Animation of items disappearing from a pile of objects that have been stacked together into an elongated cube. The entire scene spins to show a 360-degree perspective.
In the new system, each object in a packed tray is guaranteed to be separable from the other objects around it.

Credit: Image courtesy of the researchers.

That’s not the whole story, however, because the foregoing discussion concerns an object that’s moved, or “translated,” into the container while maintaining a fixed orientation in space. The computer may go through this whole process with many different orientations for the same object until it finds the orientation that best fits the space.

The last step of the SSP algorithm is to ensure that, for a seemingly desirable arrangement, every object can actually get into its assigned site, or equivalently, that every object can be separated from the other objects when the container is being unpacked. Which is to say that the packing must be “interlocking-free” — a condition for avoiding configurations such as interlocked rings.

Figuring out the best placements for each and every object as the container fills up obviously requires a lot of calculations. But the team employed a mathematical technique, the fast Fourier transform (FFT), which had never been applied to the packing problem before. By using FFT, the problems of minimizing voxel overlap and minimizing gaps for all voxels in the container can be solved through a relatively limited set of calculations, such as simple multiplications, as opposed to the impractical alternative of testing out all possible locations for the objects to be positioned inside. And that makes packing faster by several orders of magnitude.

In one demonstration, the new algorithm efficiently placed 670 objects in just 40 seconds, achieving a packing density of about 36 percent. It took two hours to arrange 6,596 objects with a packing density of 37.30 percent. “The densities we’re getting, close to 40 percent, are significantly better than those obtained by traditional algorithms,” Matusik says, “and they’re also faster.”

This work represents “a breakthrough solution to a longstanding problem of effectively organizing 3D objects,” comments Bedrich Benes, a professor of computer science at Purdue University. “The proposed solution maximizes the packing density and has the potential to find applications in many practical areas, ranging from robotics to manufacturing. Moreover, the no-interlocking solutions are suitable for computer-controlled environments.”

The approach can, of course, be useful for warehouse and shipping companies where various objects are routinely packed into boxes of different sizes, according to Matusik. However, he and his colleagues are especially interested in applications in 3D printing, also called additive manufacturing. Parts are normally manufactured in batches and placed on trays. However, current approaches, Matusik says “have very limited utilization of the [container] volume” — typically around 20 percent. “If we can increase the packing density,” he adds, “we can increase the overall efficiency of the printing process, thus reducing the overall cost of manufactured parts.”

While the SIGGRAPH paper offers new and improved procedures for 3D printing, as well as for packing rigid objects, the problem of how best to arrange deformable objects or articulated objects — the latter consisting of more than one rigid part connected by joints — is still open, and may be addressed in future work. In the meantime, if people ever find themselves with just two hours to fit more than 6,000 objects into a storage bin, there is no need to despair. Help may be just an algorithm away.

Related Links

Related Topics

Related Articles

More MIT News