"In a wide image, a small face turns to mush. So you cut it out, render it big where the model has room, shrink it, and paste it back. Cinder makes that manual ritual a first-class workflow." — adapted from the artist's framing
The Resolution Problem, Stated Physically
Generate a wide 16:9 image and the model spends its fixed resolution budget across the whole frame. A face that occupies a small fraction of that frame gets only a small fraction of the pixels — not enough to render eyes, mouth, and expression cleanly. The face turns to mush. This isn't a model-quality problem you can prompt your way out of; it's a pixels-per-region problem baked into generating a large scene at once.
The Manual Pattern That Already Works
Artists already solve this by hand, and the solution is the workflow Cinder formalizes:
- Crop the face region out of the wide image.
- Render it large on its own, so the model spends its full resolution budget on just the face — now there are plenty of pixels for detail.
- Scale it down to fit the original region.
- Composite it back into the wide image.
The whole trick is giving the detail its own generation pass at full resolution, then shrinking the high-quality result into place. (This is also why the popular automatic 'detailer' extensions exist — and why they still miss the worst cases, which is what makes the manual control worth keeping.)
Why It's First-Class, Not a Filter
It would be easy to bury this as a one-click 'fix faces' button. Cinder makes it a first-class, visible workflow instead, because the artist needs control at each step — which region, how much padding around it, which model and settings for the detail pass, and crucially the choice of which result to accept. A black-box auto-fixer takes those decisions away; a first-class workflow keeps the artist in the loop at exactly the points where judgment matters.
The Metadata the Crop Has to Carry
For composite-back to work precisely, the crop can't be just an image — it has to carry its geography: the source bounding box it came from, the source document's size, a scale factor, and optionally a padded context region so the detail pass has surrounding context to blend against. Without that geography, you have a beautiful high-res face and no precise way to put it back. The metadata is what turns a detached crop into a thing that knows where it belongs.