REVIEW 4 major objections 5 minor 1 cited by
AlphaVAE: Unified End-to-End RGBA Image Reconstruction and Generation with Alpha-Aware Representation Learning
T0 review · 4 major / 5 minor · reviewed 2026-08-06 · deepseek-v4-flash
Pith's one-line read A four-channel VAE fitted to a pretrained RGB VAE beats the 1M-image LayerDiffuse on RGBA reconstruction and generation using about 8K images; a new benchmark scores transparency by compositing onto nine canonical backgrounds.
desk verdict A useful RGBA VAE recipe and benchmark, but the headline 8K-vs-1M claim is not supported because the best numbers use FLUX while LayerDiffuse uses SDXL. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing identity is the ABMSE reconstruction loss. With $\alpha$ blending written as $A(x,b) = x_{\mathrm{rgb}} \odot x_\alpha + b \odot (1 - x_\alpha)$, the loss $L_{\mathrm{rec}}(E,D) = \mathbb{E}_b \lVert A(\hat{x},b) - A(x,b)\rVert_2^2$ expands — treating the background channels as i.i.d. — to $\lVert P\rVert_2^2 - 2\,\Delta_\alpha \langle \mathbb{E}[b], P\rangle - \Delta_\alpha^2\lVert \mathbb{E}[b^2]\rVert_1$, where $P = \hat{x}_{\mathrm{rgb}}\hat{x}_\alpha - x_{\mathrm{rgb}}x_\alpha$ is the premultiplied-color difference and $\Delta_\alpha = \hat{x}_\alpha - x_\alpha$ is the $\alpha$ difference. Because the expectation reduces to the first and second moments of the background distribution (estimated once from ImageNet), the blending-aware supervision adds no sampling cost during training. Around this loss sit the channel-extension initialization — zeroed $\alpha$ slices in the outer convolutions, decoder $\alpha$ bias set to 1 — and the dual-KL regularizer to the frozen reference encoder, which the ablation study identifies as the component that preserves downstream generation quality.
What would settle it
Render a set of transparent objects in 3D software so the true straight-alpha foreground color is known exactly, composite them onto the nine canonical backgrounds, and run the released AlphaVAE and LayerDiffuse checkpoints on the result; if the PSNR gap observed on the matting-derived ALPHA test set shrinks or reverses on these construction-known images, the advantage is an artifact of the training targets rather than of the architecture or loss.
Extended reading notes
Core claim
AlphaVAE asserts that RGBA reconstruction and generation do not require a dedicated transparency architecture or a web-scale RGBA corpus: a pretrained three-channel VAE can be converted in place. The conversion widens the first encoder convolution and the last decoder convolution to four channels, copies the pretrained weights into the RGB slices, zero-initializes the $\alpha$ slices, and sets the decoder $\alpha$ bias to 1 so the model starts fully opaque and learns transparency gradually. The training objective supervises appearance where the user sees it: the main reconstruction term, ABMSE, is the expected squared error between prediction and ground truth after both are $\alpha$-blended onto backgrounds, an expectation that collapses to a polynomial in the premultiplied-color difference $P$ and the $\alpha$ difference $\Delta_\alpha$ with coefficients fixed by precomputed background moments. The perceptual term also runs on blended inputs, restricted to white and black backgrounds because a perceptual network cannot be reduced to moments the way the pixel loss can, and two KL terms — one toward the standard normal, one toward the frozen reference encoder's latent on blended inputs with a fourth channel of ones — keep the fine-tuned latent compatible with the pretrained diffusion model. On the ALPHA test split the FLUX-based model reports PSNR 38.20 dB versus 32.45 dB for LayerDiffuse, and the paper's summary claim is that about 8,000 training images suffice where the baseline used about 1M.
Load-bearing premise
The load-bearing premise, stated in Section 3.2, is that concatenating an extracted matting foreground with its alpha matte yields true RGBA ground truth: the stored RGB is assumed to be the clean, unmultiplied object color, and any background contamination or fringing baked into the extracted foregrounds would be baked into both the training targets and the benchmark scores.
Editorial extensions
If this is right
- A standard RGB diffusion stack (SDXL or FLUX) can be converted into a transparent-image generator by fine-tuning the VAE with the alpha-channel extension plus a low-rank LoRA on the diffusion module, with no new transparency corpus beyond existing matting datasets.
- RGBA results become comparable across papers: the nine-background compositing protocol turns any RGB metric into a transparency-aware one, so future reconstruction and generation numbers can be checked against LayerDiffuse and AlphaVAE on the same scale.
- The reference-KL constraint is the part of the recipe that protects generation, not reconstruction: dropping it leaves reconstruction essentially unchanged but raises the generation FID by about 5.8 points on AIM-500, so latent compatibility with the frozen diffusion prior is a deliberate, load-bearing design choice.
- The ablations show the perceptual LPIPS term and the standard-normal KL term are the largest contributors to reconstruction quality, meaning the gains come from the joint objective rather than from any single loss.
- Because transparency lives in the VAE latent, downstream uses — the paper names video and interactive layered editing — inherit RGBA capability without redesigning the diffusion backbone.
Reading between the lines
- The 8K-versus-1M comparison evaluates a released checkpoint of LayerDiffuse, trained on a different corpus, under metrics defined in this paper; retraining LayerDiffuse on the same 8K ALPHA split under the same protocol would be a sharper test of whether the data-efficiency claim belongs to the architecture or to the new training targets and scoring rule.
- All reported scores are computed after compositing, so alpha fidelity is never isolated; a matte-only metric (sum of absolute alpha differences, or error restricted to fractional-coverage pixels) would reveal whether the transparency channel itself drives the gap.
- The paper's training-set construction implies that the matting literature as a whole is a renewable source of RGBA training data, so the 8K number is a property of curation, not a capacity limit; if the method scales with future matting datasets, the data-efficiency headline should be read as "the right 8K images", not "any 8K images".
- The benchmark scores only solid-color composites, while the qualitative figures show checkerboard rendering; a textured or natural-background variant of the protocol would test whether the ranking of methods survives more realistic compositing.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces ALPHA, a benchmark for evaluating RGBA image reconstruction and generation by compositing images over fixed backgrounds and applying standard RGB metrics, and AlphaVAE, a method that extends a pretrained RGB VAE to four channels by adding an alpha channel with zero-initialized weights and a composite loss (alpha-blended reconstruction, perceptual, dual KL, and GAN terms). The authors train on about 8K images derived from matting datasets and report large PSNR/SSIM improvements over LayerDiffuse, plus improved FID for diffusion-based transparent image generation when the VAE is fine-tuned with LoRA. The paper also provides ablations and qualitative examples.
Significance. If the central claims are validated, the work has practical value: the benchmark protocol is a reasonable way to adapt RGB metrics to RGBA data, the zero-initialization alpha-channel extension is simple and easy to adopt, and the reported data efficiency (8K images versus 1M) would be notable. The paper ships code, data, and models, which supports reproducibility. The evaluation against held-out ground-truth RGBA images is not circular, and aligning the training loss with the alpha-blended evaluation metric is sensible. However, as presented, the headline comparison is confounded by the choice of base VAE, and the effective-zero reference-KL weight undermines the stated role of that term; these issues need to be addressed before the main claims can be accepted.
major comments (4)
- [Abstract; Table 2, §5.2] The headline numbers (+4.9 dB PSNR, +3.2% SSIM) compare AlphaVAE+FLUX against LayerDiffuse+SDXL, but LayerDiffuse is built on SDXL and the SDXL-based AlphaVAE is worse than LayerDiffuse on LPIPS (AIM-500: 0.0495 vs 0.0418; ALPHA: 0.0402 vs 0.0324). Because the base VAE differs and LayerDiffuse was not retrained on the same data, the claim that AlphaVAE 'outperforms LayerDiffuse across multiple quantitative metrics' is not established. Please provide a controlled comparison with the same base VAE, the same training data, and the same evaluation protocol, and state which of the two AlphaVAE variants is used for each claim.
- [Appendix B, §4.2.3, Table 3] The reference-KL term is weighted by 1e-16, which is effectively zero. The paper describes this term as 'specifically introduced' to preserve latent fidelity and attributes generation gains to it, but a weight of 1e-16 cannot influence training. The 'w/o Ref KL' differences in Table 3 are therefore likely within training noise. Please either use a meaningful weight or remove the claim that the reference-KL term contributes to the reported generation improvements.
- [Appendix A, Eq. (18); §4.2.1, Eq. (8)] There is a sign error in the derivation of the reconstruction loss. Expanding E[||P - Δα b||^2] gives +Δα^2 E[||b||^2] (equivalently +Δα^2 ||E[b^2]||_1), not the negative term shown in Eq. (18). The main-text Eq. (8) has the correct plus sign, so the appendix contradicts the main text. If the implemented loss follows the appendix sign, the loss would encourage larger alpha errors, and the reported reconstruction results would need to be re-examined.
- [Table 3, §5.2] The generation claim rests on FID improvements of 4.61 points on AIM-500 and 6.15 points on the ALPHA test split, yet no error bars, confidence intervals, or multiple-seed results are reported. With test sets of roughly 500 and 402 images, FID estimates are noisy. Please report variance or repeated runs, or temper the generation claim accordingly.
minor comments (5)
- [§3.2, last paragraph] The overview paragraph refers to 'AlphaGen' where the paper otherwise describes AlphaVAE; please correct this typo.
- [§4.2.3, Eq. (13)] The notation for the reference-KL term is hard to parse; please spell out the concatenation [A(x,b);1] and the exact arguments of the two encoders more explicitly.
- [§3.2] Please clarify whether the foreground RGB used as the RGBA target is the unmultiplied foreground color or an extracted foreground that may contain background contamination; the validity of the training targets depends on this distinction.
- [Appendix B] The background statistics E[b] and E[b^2] are estimated from the ImageNet training split; please justify why this distribution is used for the ABMSE expectation rather than the distribution of backgrounds used at evaluation.
- [Figure 3 caption] The caption does not define 'GT*' or 'Ours*' consistently; please add explicit definitions so that the qualitative comparison is unambiguous.
Circularity Check
No significant circularity: the reconstruction and generation claims are tested against held-out and external data, and no fitted parameter is renamed as a prediction.
full rationale
The paper's central claims do not reduce to their inputs by construction. AlphaVAE's reconstruction quality is measured on held-out test splits (ALPHA test split and the external AIM-500 dataset) against ground-truth RGBA images, and no fitted parameter or training statistic is relabeled as a prediction. The ABMSE training loss (Eq. 6) is aligned with the alpha-blended evaluation metric (Eq. 2), but this is objective-metric alignment, not a by-construction identity: the model must still generalize to unseen images, and the background statistics E[b] and E[b^2] are pre-computed from ImageNet rather than fit to the test set. The data-efficiency claim is an empirical comparison against LayerDiffuse; while the confounded base model in Table 2 (AlphaVAE+FLUX versus LayerDiffuse+SDXL) raises a correctness concern, it is not circularity. The paper contains no load-bearing self-citations, no imported uniqueness theorem, and no ansatz smuggled in via citation. The limitations in Appendix C concern experimental scope, not circular reasoning.
Assumptions & free parameters
free parameters (5)
- Perceptual loss weight (λ_perc) =
0.5
- Normal KL weight (λ_norm) =
1e-6
- Reference KL weight (λ_ref) =
1e-16
- GAN loss weight (λ_GAN) =
1.0 after 4000 steps
- Background augmentation probability =
0.3
assumptions (5)
- standard math Background pixels b in the ABMSE loss are treated as i.i.d.
- domain assumption Image matting datasets' foreground and alpha pairs constitute ground-truth RGBA images.
- domain assumption Alpha blending over nine solid colors is a sufficient evaluation and optimization proxy for RGBA quality.
- ad hoc to paper The reference KL term is weighted 1e-16, effectively zero.
- domain assumption Zero-initializing the alpha channel preserves the pretrained RGB VAE's utility; the latent space remains compatible with the pretrained diffusion model.
Cite this review
Pith. "Pith review of AlphaVAE: Unified End-to-End RGBA Image Reconstruction and Generation with Alpha-Aware Representation Learning." pith.science (2026). https://pith.science/paper/FL2AKGAK
@misc{pith2026250709308,
author = {Pith},
title = {Pith review of: AlphaVAE: Unified End-to-End RGBA Image Reconstruction and Generation with Alpha-Aware Representation Learning},
year = {2026},
howpublished = {\url{https://pith.science/paper/FL2AKGAK}},
note = {Machine review of arXiv:2507.09308}
}
read the original abstract
Recent advances in latent diffusion models have achieved remarkable results in high-fidelity RGB image synthesis by leveraging pretrained VAEs to compress and reconstruct pixel data at low computational cost. However, the generation of transparent or layered content (RGBA image) remains largely unexplored, due to the lack of large-scale benchmarks. In this work, we propose ALPHA, the first comprehensive RGBA benchmark that adapts standard RGB metrics to four-channel images via alpha blending over canonical backgrounds. We further introduce ALPHAVAE, a unified end-to-end RGBA VAE that extends a pretrained RGB VAE by incorporating a dedicated alpha channel. The model is trained with a composite objective that combines alpha-blended pixel reconstruction, patch-level fidelity, perceptual consistency, and dual KL divergence constraints to ensure latent fidelity across both RGB and alpha representations. Our RGBA VAE, trained on only 8K images in contrast to 1M used by prior methods, achieves a +4.9 dB improvement in PSNR and a +3.2% increase in SSIM over LayerDiffuse in reconstruction. It also enables superior transparent image generation when fine-tuned within a latent diffusion framework. Our code, data, and models are released on https://github.com/o0o0o00o0/AlphaVAE for reproducibility.
Figures
Figures from the paper (22 more)
Forward citations
Cited by 1 Pith paper
-
UniWorld-Design: From Pixel Generation to Layer-Native Design
A two-model framework generates images as transparent layers and decomposes finished designs into ordered, complete semantic layers, outperforming prior decomposition models on per-layer fidelity and editability.
Reference graph
Works this paper leans on
-
[1]
Denoising diffusion probabilistic models
Jonathan Ho, Ajay Jain, and Pieter Abbeel. Denoising diffusion probabilistic models. In Proceedings of the 34th International Conference on Neural Information Processing Systems , NIPS ’20, Red Hook, NY , USA, 2020. Curran Associates Inc
work page 2020
-
[2]
Improved denoising diffusion probabilistic models
Alexander Quinn Nichol and Prafulla Dhariwal. Improved denoising diffusion probabilistic models. In Marina Meila and Tong Zhang, editors, ICML, volume 139 of Proceedings of Machine Learning Research, pages 8162–8171. PMLR, 2021
work page 2021
-
[3]
High-Resolution Image Synthesis with Latent Diffusion Models
Robin Rombach, Andreas Blattmann, Dominik Lorenz, Patrick Esser, and Bjorn Ommer. High-Resolution Image Synthesis with Latent Diffusion Models . In 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 10674–10685, Los Alamitos, CA, USA, June 2022. IEEE Computer Society
work page 2022
-
[4]
Auto-encoding variational bayes, 2022
Diederik P Kingma and Max Welling. Auto-encoding variational bayes, 2022
2022
-
[5]
Burgess, Xavier Glorot, Matthew M
Irina Higgins, Loïc Matthey, Arka Pal, Christopher P. Burgess, Xavier Glorot, Matthew M. Botvinick, Shakir Mohamed, and Alexander Lerchner. beta-vae: Learning basic visual concepts with a constrained variational framework. In International Conference on Learning Representations , 2016
work page 2016
-
[6]
Neural discrete representation learning
Aaron van den Oord, Oriol Vinyals, and Koray Kavukcuoglu. Neural discrete representation learning. In Proceedings of the 31st International Conference on Neural Information Processing Systems , NIPS’17, page 6309–6318, Red Hook, NY , USA, 2017. Curran Associates Inc
work page 2017
-
[7]
Text2layer: Layered image generation using latent diffusion model, 2023
Xinyang Zhang, Wentian Zhao, Xin Lu, and Jeff Chien. Text2layer: Layered image generation using latent diffusion model, 2023
work page 2023
-
[8]
Transparent image layer diffusion using latent transparency
Lvmin Zhang and Maneesh Agrawala. Transparent image layer diffusion using latent transparency. ACM Trans. Graph., 43(4), July 2024
work page 2024
Show all 41 references
-
[9]
Bovik, H.R
Zhou Wang, A.C. Bovik, H.R. Sheikh, and E.P. Simoncelli. Image quality assessment: from error visibility to structural similarity. IEEE Transactions on Image Processing, 13(4):600–612, 2004
2004
-
[10]
Efros, Eli Shechtman, and Oliver Wang
Richard Zhang, Phillip Isola, Alexei A. Efros, Eli Shechtman, and Oliver Wang. The Unreasonable Effectiveness of Deep Features as a Perceptual Metric . In2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), pages 586–595, Los Alamitos, CA, USA, June 2018...
2018
-
[11]
Qwen2.5-vl technical report
Shuai Bai, Keqin Chen, Xuejing Liu, Jialin Wang, Wenbin Ge, Sibo Song, Kai Dang, Peng Wang, Shijie Wang, Jun Tang, Humen Zhong, Yuanzhi Zhu, Mingkun Yang, Zhaohai Li, Jianqiang Wan, Pengfei Wang, Wei Ding, Zheren Fu, Yiheng Xu, Jiabo Ye, Xi Zhang, Tianbao Xie, Zesen Cheng, Han...
2025 arXiv
-
[12]
Fast soft color segmentation
Naofumi Akimoto, Huachun Zhu, Yanghua Jin, and Yoshimitsu Aoki. Fast soft color segmentation. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , June 2020
2020
-
[13]
Image vectorization and editing via linear gradient layer decomposition
Zheng-Jun Du, Liang-Fu Kang, Jianchao Tan, Yotam Gingold, and Kun Xu. Image vectorization and editing via linear gradient layer decomposition. ACM Trans. Graph., 42(4), July 2023
2023
-
[14]
Generative image layer decomposition with visual effects
Jinrui Yang, Qing Liu, Yijun Li, Soo Ye Kim, Daniil Pakhomov, Mengwei Ren, Jianming Zhang, Zhe Lin, Cihang Xie, and Yuyin Zhou. Generative image layer decomposition with visual effects. arXiv preprint arXiv:2411.17864, 2024
2024 arXiv
-
[15]
Decomposing images into layers with advanced color blending
Yuki Koyama and Masataka Goto. Decomposing images into layers with advanced color blending. Computer Graphics F orum, 37(7):397–407, 2018
2018
-
[16]
Deep image matting
Ning Xu, Brian Price, Scott Cohen, and Thomas Huang. Deep image matting. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) , July 2017
2017
-
[17]
Towards natural image matting in the wild via real-scenario prior
Ruihao Xia, Yu Liang, Peng-Tao Jiang, Hao Zhang, Qianru Sun, Yang Tang, Bo Li, and Pan Zhou. Towards natural image matting in the wild via real-scenario prior. arXiv:2410.06593, 2024
2024 arXiv
-
[18]
Zim: Zero-shot image matting for anything
Beomyoung Kim, Chanyong Shin, Joonhyun Jeong, Hyungsik Jung, Se-Yun Lee, Sewhan Chun, Dong-Hyun Hwang, and Joonsang Yu. Zim: Zero-shot image matting for anything. arXiv preprint arXiv:2411.00626, 2024
2024 arXiv
-
[19]
Rethinking portrait matting with pirvacy preserving
Sihan Ma, Jizhizi Li, Jing Zhang, He Zhang, and Dacheng Tao. Rethinking portrait matting with pirvacy preserving. International Journal of Computer Vision, 2023. 11
2023
-
[20]
Referring image matting
Jizhizi Li, Jing Zhang, and Dacheng Tao. Referring image matting. In Proceedings of the IEEE Computer Vision and Pattern Recognition, 2023
2023
-
[21]
Semantic soft segmen- tation
Ya˘gız Aksoy, Tae-Hyun Oh, Sylvain Paris, Marc Pollefeys, and Wojciech Matusik. Semantic soft segmen- tation. ACM Transactions on Graphics (Proc. SIGGRAPH), 37(4):72:1–72:13, 2018
2018
-
[22]
Dreamlayer: Simultaneous multi-layer generation via diffusion model, 2025
Junjia Huang, Pengxiang Yan, Jinhang Cai, Jiyang Liu, Zhao Wang, Yitong Wang, Xinglong Wu, and Guanbin Li. Dreamlayer: Simultaneous multi-layer generation via diffusion model, 2025
2025
-
[23]
Semantic image matting
Yanan Sun, Chi-Keung Tang, and Yu-Wing Tai. Semantic image matting. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2021
2021
-
[24]
Bridging composite and real: towards end-to-end deep image matting
Jizhizi Li, Jing Zhang, Stephen J Maybank, and Dacheng Tao. Bridging composite and real: towards end-to-end deep image matting. International Journal of Computer Vision, 130(2):246–266, 2022
2022
-
[25]
Generating compositional scenes via text-to-image RGBA instance generation
Alessandro Fontanella, Petru-Daniel Tudosiu, Yongxin Yang, Shifeng Zhang, and Sarah Parisot. Generating compositional scenes via text-to-image RGBA instance generation. InThe Thirty-eighth Annual Conference on Neural Information Processing Systems , 2024
2024
-
[26]
Alfie: Democratising RGBA Image Generation With No $$$
Fabio Quattrini, Vittorio Pippi, Silvia Cascianelli, and Rita Cucchiara. Alfie: Democratising RGBA Image Generation With No $$$. In Proceedings of the European Conference on Computer Vision Workshops . Springer, 2024
2024
-
[27]
Art: Anonymous region transformer for variable multi-layer transparent image generation, 2025
Yifan Pu, Yiming Zhao, Zhicong Tang, Ruihong Yin, Haoxing Ye, Yuhui Yuan, Dong Chen, Jianmin Bao, Sirui Zhang, Yanbin Wang, Lin Liang, Lijuan Wang, Ji Li, Xiu Li, Zhouhui Lian, Gao Huang, and Baining Guo. Art: Anonymous region transformer for variable multi-layer transparent i...
2025
-
[28]
Scalable diffusion models with transformers
William Peebles and Saining Xie. Scalable diffusion models with transformers. In Proceedings - 2023 IEEE/CVF International Conference on Computer Vision, ICCV 2023 , Proceedings of the IEEE Interna- tional Conference on Computer Vision, pages 4172–4182. Institute of Electrical...
2023
-
[29]
Gans trained by a two time-scale update rule converge to a local nash equilibrium
Martin Heusel, Hubert Ramsauer, Thomas Unterthiner, Bernhard Nessler, and Sepp Hochreiter. Gans trained by a two time-scale update rule converge to a local nash equilibrium. In Proceedings of the 31st International Conference on Neural Information Processing Systems , NIPS’17,...
2017
-
[30]
Laion-5b: an open large-scale dataset for training next generation image-text models
Christoph Schuhmann, Romain Beaumont, Richard Vencu, Cade Gordon, Ross Wightman, Mehdi Cherti, Theo Coombes, Aarush Katta, Clayton Mullis, Mitchell Wortsman, Patrick Schramowski, Srivatsa Kun- durthy, Katherine Crowson, Ludwig Schmidt, Robert Kaczmarczyk, and Jenia Jitsev. Lai...
2022
-
[31]
Attention-guided hierarchical structure aggregation for image matting
Yu Qiao, Yuhao Liu, Xin Yang, Dongsheng Zhou, Mingliang Xu, Qiang Zhang, and Xiaopeng Wei. Attention-guided hierarchical structure aggregation for image matting. In The IEEE Conference on Computer Vision and Pattern Recognition (CVPR), June 2020
2020
-
[32]
Ultrahigh resolution image/video matting with spatio- temporal sparsity
Yanan Sun, Chi-Keung Tang, and Yu-Wing Tai. Ultrahigh resolution image/video matting with spatio- temporal sparsity. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recogni- tion (CVPR), pages 14112–14121, June 2023
2023
-
[33]
Tripartite information mining and integration for image matting
Yuhao Liu, Jiake Xie, Xiao Shi, Yu Qiao, Yujie Huang, Yong Tang, and Xin Yang. Tripartite information mining and integration for image matting. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), pages 7555–7564, October 2021
2021
-
[34]
Privacy-preserving portrait matting
Jizhizi Li, Sihan Ma, Jing Zhang, and Dacheng Tao. Privacy-preserving portrait matting. In Proceedings of the 29th ACM International Conference on Multimedia , MM ’21, page 3501–3509, New York, NY , USA,
-
[35]
Curless, Steven M
Shanchuan Lin, Andrey Ryabtsev, Soumyadip Sengupta, Brian L. Curless, Steven M. Seitz, and Ira Kemelmacher-Shlizerman. Real-time high-resolution background matting. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pages 8762–8771, June 2021
2021
-
[36]
Mask guided matting via progressive refinement network
Qihang Yu, Jianming Zhang, He Zhang, Yilin Wang, Zhe Lin, Ning Xu, Yutong Bai, and Alan Yuille. Mask guided matting via progressive refinement network. arXiv preprint arXiv:2012.06722, 2020. 12
2012 arXiv
-
[37]
Transmatting: Enhancing transparent objects matting with transformers
Huanqia Cai, Fanglei Xue, Lele Xu, and Lili Guo. Transmatting: Enhancing transparent objects matting with transformers. In European Conference on Computer Vision (ECCV), 2022
2022
-
[38]
Taming transformers for high-resolution image synthesis
Patrick Esser, Robin Rombach, and Bjorn Ommer. Taming transformers for high-resolution image synthesis. In Proceedings of the IEEE/CVF conference on computer vision and pattern recognition , pages 12873–12883, 2021
2021
-
[39]
Sdxl: Improving latent diffusion models for high-resolution image synthesis
Dustin Podell, Zion English, Kyle Lacey, Andreas Blattmann, Tim Dockhorn, Jonas Müller, Joe Penna, and Robin Rombach. Sdxl: Improving latent diffusion models for high-resolution image synthesis. arXiv preprint arXiv:2307.01952, 2023
2023 arXiv
-
[40]
Your Soul is a River
Black Forest Labs. Flux. https://github.com/black-forest-labs/flux , 2024. 13 Appendix A Formula Derivation In this section, we derive Equation (8). Assuming the three channels of the background color b ∈ R3 are independent and identically distributed, we can work on a single ...
2024
-
[2021]
Association for Computing Machinery
Reviewed August 6, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.