Local anime character layer decomposition with a browser UI, animated 2.5D preview, PSD export.
876
Turn one anime character image into separate editable layers and a layered Photoshop file—privately on your own computer.
This Docker image includes:
Your image stays on the computer running Docker. The application does not require a cloud image-processing service.
Open the application in your browser, add an image, select the quality settings, and start generation:
When generation finishes, you can inspect the generated pieces and download the layered PSD:
You need:
Windows users should install Docker Desktop and enable its WSL 2 backend. Docker provides a separate Windows GPU setup and test guide.
Linux users need Docker Engine and the NVIDIA Container Toolkit.
Open PowerShell, Windows Terminal, or a Linux terminal and copy these commands.
Create a place for generated files:
docker volume create see_through_workspace
Start the application:
docker run -d \
--name see-through \
--restart unless-stopped \
--gpus all \
-p 8000:8000 \
-v see_through_workspace:/app/workspace \
hangrylabs/see-through:latest
The first pull can take a while because the standard image contains the application and all model files.
When Docker reports the container is running, open:
http://localhost:8000
Generation can be stopped safely with Stop generation while a job is running.
| Setting | Recommended starting value | What it changes |
|---|---|---|
| Output resolution | 768 px | Layer detail and GPU-memory use |
| Depth resolution | 512 px | Depth detail and GPU-memory use |
| Image framing | Preserve full image | Keeps the whole character and adds transparent padding |
| Seed | Empty / Random | Chooses a new generation result each time |
| Steps | 30 | Generation quality and time |
| 16 GB safe mode | Enabled | Reduces peak GPU-memory use but takes longer |
Use 1280 px output and 768 px depth for the upstream full-quality profile. Start with the lower settings first; higher resolutions take more GPU memory and more time.
Thirty steps is the model pipeline's standard inference default and the recommended starting point. More steps are slower and are not guaranteed to improve the result.
See whether the application is running:
docker ps --filter name=see-through
View its log:
docker logs -f see-through
Stop it:
docker stop see-through
Start it again later:
docker start see-through
Stop and remove the old container:
docker stop see-through
docker rm see-through
Download the newest image:
docker pull hangrylabs/see-through:latest
Run the command from Start See-through again. Your completed jobs remain in the see_through_workspace Docker volume.
latest — recommended full image with all model files includedlatest_tiny — smaller application image that downloads models on first usevX.Y.Z — versioned full release, for example v0.1.0vX.Y.Z_tiny — versioned tiny releaseThe full image can run inference without contacting Hugging Face after it has been pulled.
The tiny image is intended for advanced users who prefer model files in a separate persistent cache:
docker volume create see_through_workspace
docker volume create see_through_hf_cache
docker run -d \
--name see-through \
--restart unless-stopped \
--gpus all \
-p 8000:8000 \
-e HF_HUB_OFFLINE=0 \
-e TRANSFORMERS_OFFLINE=0 \
-v see_through_workspace:/app/workspace \
-v see_through_hf_cache:/app/.cache/huggingface \
hangrylabs/see-through:latest_tiny
An internet connection is required for its first model download.
Check the container:
docker ps --filter name=see-through
docker logs see-through
Run:
docker run --rm --gpus all nvidia/cuda:12.8.0-base-ubuntu24.04 nvidia-smi
If that fails, update the NVIDIA driver and verify Docker's NVIDIA GPU setup before running See-through again.
The two model stages run one after another and can take several minutes. Safe mode reduces memory use by moving model blocks between system memory and GPU memory, which makes generation slower.
The UI and API run together on port 8000.
http://localhost:8000/docsGET /health/readyPOST /v1/layer-decompositionsGET or DELETE /v1/layer-decompositions/{job_id}Each normal generation uses:
SAM Body Parsing is upstream research and annotation tooling. It is not used by this browser application's PSD generation pipeline.
Inputs and generated files remain in the configured local workspace. The application has no built-in login screen, so do not expose port 8000 directly to an untrusted network.
Only process images you have permission to use. Generated layers can contain segmentation, inpainting, ordering, or reconstruction mistakes and should be reviewed before production use.
The original See-through models, research, authorship, citation, and acknowledgements belong to the upstream project and its authors.
Content type
Image
Digest
sha256:72ab2afb9…
Size
17.4 GB
Last updated
12 days ago
docker pull hangrylabs/see-through