BBOX Control
Control generated model proportions with a bounding-box condition.
ControlNet
ControlNet enhances model customization by providing finer control over generated outputs. It adds parameters to the original request so you can control properties such as the proportions, shape, and structure of a 3D model.
BoundingBox ControlNet
BoundingBox ControlNet lets you define the proportions of a generated model by specifying its length, width, and height. This is useful when an object must fit within particular dimensions or other spatial constraints.
Request format
Set bbox_condition to a JSON array containing the bounding-box dimensions:
{
"bbox_condition": [100, 100, 100]
}The array must contain exactly three values in this order:
- Width (X-axis):
100units - Height (Y-axis):
100units - Length (Z-axis):
100units
In other words, the fixed axis order is (x, y, z), or Width, Height, Length. Each value must be an integer between 1 and 2048. Setting bbox_condition instructs the model to generate an object that fits within the specified box.
Bounding box axes
World
+y (Height)
|
|
|
o-------- +x (Width)
/
/
+z (Length)