Pith. sign in

REVIEW 3 major objections 6 minor 77 references

Leveraging Color Channel Independence for Improved Unsupervised Object Detection

T0 review · 3 major / 6 minor · reviewed 2026-08-11 · deepseek-v4-flash

Pith's one-line read Adding a saturation channel to the reconstruction target of Slot Attention models improves unsupervised object discovery across five multi-object datasets.

desk verdict RGB-S targets reliably improve slot-attention object discovery, but the paper never isolates whether the gain comes from saturation's specific properties or merely from adding an extra output channel. read the letter →

arxiv 2412.15150 v1 pith:J4Y7XE27 submitted 2024-12-19 cs.CV cs.AIcs.LG

classification cs.CVcs.AIcs.LG
keywords object-centricrepresentationlearningslotattentionunsupervisedobjectdiscoverycolorspacesaturationcompositespacesreconstructionlossdisentanglement
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

The paper asks whether the color space in which an unsupervised object-centric model is asked to reconstruct a scene should always be RGB. It argues that RGB channels are highly correlated and dominated by lightness, so a reconstruction loss gives slots little signal for separating objects that differ in hue or saturation. The proposed fix is a composite target space, RGB-S, that appends the HSV saturation channel to RGB in the decoder output. Training Slot Attention models to predict this extra channel improves object segmentation and factor disentanglement on all five tested datasets, with no architectural change beyond the decoder head and no extra compute. If correct, this means a free choice of output color channels can partially substitute for supervised or self-supervised signals.

What carries the argument

The load-bearing object is the composite RGB-S target color space: the decoder is asked to predict RGB channels plus the saturation channel and the alpha mask, and the unsupervised reconstruction loss includes saturation as an additional target. Saturation is continuous, nearly uncorrelated with all three RGB channels, and robust to illumination changes, so it supplies a complementary signal that forces slots to represent perceptual properties that RGB's lightness-dominated channels underweight. The argument runs through the slot-binding mechanism: with the three RGB channels effectively acting as one correlated lightness dimension, the attention competition has too little to discriminate on; the fifth uncorrelated dimension gives it a foothold.

What would settle it

Train the same Slot Attention architecture with RGB plus a control fourth channel, such as a duplicated R channel, a constant channel, or random noise, and compare FG-ARI and mIoU on Clevrtex and MultiShapeNet; if any control matches or exceeds RGB-S, the saturation-specific explanation fails, while the paper's account predicts RGB-S wins and the controls behave like RGB.

Watch

Extended reading notes

Core claim

The discovery is that the target representation, not just the input, controls what slot-based models learn to bind. The authors show that when the spatial-broadcast decoder predicts an extra channel, saturation from the HSV space, alongside RGB, object discovery (FG-ARI and mIoU) and the ability of slots to encode object properties improve consistently. Pure HSV targets work well on textured datasets but degenerate on simpler ones because the hue channel is discontinuous; RGB-S keeps RGB's stability and adds only the continuous, RGB-uncorrelated saturation signal. In their experiments, RGB-S and RGB-SV outperform RGB in every setting, with Clevrtex FG-ARI rising from 75.6 to 92.7 and Movi-C mIoU from 21.3 to 27.2, while precision for predicting object materials roughly doubles.

Load-bearing premise

The argument assumes the improvement comes from saturation's specific statistical properties (uncorrelated with RGB, robust to lighting, continuous), not simply from the model being asked to predict an extra channel; the paper gives no control condition with an arbitrary fourth channel.

Editorial extensions

If this is right

  • Adding saturation to the reconstruction target improves foreground-adjusted Rand index and mIoU over RGB across all five datasets, with the largest gains on textured scenes such as Clevrtex.
  • Slots trained with RGB-S targets better encode underlying object properties: average precision for predicting Clevrtex materials roughly doubles compared with RGB, and DCI informativeness, disentanglement, and completeness all improve.
  • Slot representations trained with saturation targets are more stable under changing lighting conditions, as measured by smaller cosine and Euclidean distances for the same object under darkness shifts.
  • The benefit comes at nearly zero cost: only the decoder's output dimension and the loss target change, so the recipe applies to any slot-based or reconstruction-trained visual model.
  • On simple datasets, adding hue destabilizes training, so saturation rather than any extra HSV channel is the channel that carries the consistent improvement.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • A control condition with an extra channel that is not semantically motivated, such as a duplicated or noise channel, would test whether the benefit comes from saturation's statistical properties or merely from increased target dimensionality; no such control appears in the paper.
  • If the RGB-S mechanism is what the paper thinks it is, it should combine with self-supervised objectives rather than compete with them: saturation targets provide complementary information, whereas self-supervised features on Clevrtex underperform composite spaces in the paper's comparison.
  • A testable extension is to synthesize scenes where saturation of objects is systematically decorrelated from their RGB lightness; the paper's account predicts object discovery should improve most exactly when saturation alone separates objects from the background.
  • Composite color targets may also improve other pixel-reconstruction learning tasks such as image colorization or autoencoding, since the same correlated-RGB-channels argument applies there; the paper leaves this untested.
Share X Bluesky LinkedIn Reddit HN

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

3 major / 6 minor

Summary. The paper studies the color-space representation used as the reconstruction target in unsupervised object-centric learning with Slot Attention. It argues that RGB targets are suboptimal because the RGB channels are mutually correlated and sensitive to lighting, and it proposes composite target spaces, most prominently RGB-S (RGB plus the saturation channel from HSV), which requires only changing the decoder's output dimensionality. The authors evaluate RGB-S, RGB-SV, RGB-HSV, HSV, and RGB baselines on five datasets (CLEVR, MultiShapeNet-4, MultiShapeNet-24, ClevrTex, MOVi-C) and report consistent mean improvements in FG-ARI and mIoU, together with DCI-based disentanglement metrics and an additional lighting-robustness experiment in Appendix D.4. The central claim is that RGB-S 'significantly' outperforms RGB and yields better object discovery and slot representations.

Significance. If the empirical claim holds, this is a practically useful and remarkably cheap improvement: it is architecture-agnostic, adds essentially no computational cost, and improves mean object-discovery metrics across several standard benchmarks. The paper has real strengths: experiments are run over 10 seeds for CNN models and 6 for ResNet models, evaluation is on held-out test sets, and the appendix includes out-of-distribution, lighting-robustness, and slot-ablation analyses. However, the conceptual contribution depends on attributing the gains to saturation's specific statistical properties, and this attribution is currently confounded with output dimensionality. The statistical strength of the headline claims is also overstated relative to the reported variances. These issues are fixable with additional analyses, but they are load-bearing for the paper's central interpretation.

major comments (3)
  1. [Section 3.3; Table 2] The causal attribution of the gains to saturation's statistical properties (non-correlation, continuity, lighting robustness) is not isolated from a dimensionality confound. Every alternative target considered changes the channel count as well as the channel semantics: RGB-S adds one channel, RGB-SV and RGB-HSV add two, HSV replaces all three, and RGB-R and RGB-GRAY are full replacements. There is no condition that adds one extra dimension whose content lacks the claimed properties, such as a duplicate R channel, a constant channel, or a fixed random channel. Without such a control, the observed improvements could be explained by the increased decoder output dimensionality alone, and the paper's central conceptual claim about 'color channel independence' is unsupported. The authors should add an ablative control with an arbitrary extra channel and report whether the saturation-specific benefit remains.
  2. [Section 5.1; Table 2] The word 'significantly' is used repeatedly (Abstract, Sections 3.3, 5.1.2, 5.2, Conclusion), but no statistical significance test, confidence interval, or paired comparison is reported. Several headline differences are within one standard deviation of the baseline, e.g., CLEVR RGB-S vs RGB FG-ARI 94.9 ± 1.2 vs 94.1 ± 1.1 and MOVi-C RGB-S vs RGB FG-ARI 45.7 ± 2.4 vs 42.9 ± 3.3. Because the same seeds are used across target spaces, paired tests or seed-level effect sizes should be reported to substantiate the 'significant' wording; otherwise the conclusion should be softened to 'improvement in average metrics' rather than statistical significance.
  3. [Section 5.1.2] The paper itself states that part of the RGB baseline's weakness comes from degenerate seeds (2 of 10 on MultiShapeNet-4, 5 of 10 on MultiShapeNet-24) and that the best RGB seed (84.1 FG-ARI on MultiShapeNet-4) matches the RGB-S mean (82.1). This suggests the improvement may be largely variance reduction rather than a uniform representational gain. The authors should report per-seed paired differences for every dataset, state how many runs degenerated per target space, and show that the advantage persists when degenerate runs are excluded. Without this, the 'markedly better' claim in the Abstract is underdetermined.
minor comments (6)
  1. [Section 4] Raw citation commands such as 'citeBiza2023', 'citeMajellano2024', and 'citesingh2023' appear in the text and should be converted to proper references.
  2. [Table 1] The caption 'RGB2X' is unclear; the text describes RGB-R and RGB-GRAY as full replacements rather than two-channel additions, so the table header should be reworded.
  3. [Appendix D.8] The text uses 'd=0' while the corresponding tables use 'L=0' and 'L=20'; the notation should be unified.
  4. [Figure D7] The caption refers to '(D7)' when comparing with HSV feature maps; it should refer to Figure D8.
  5. [References] The reference list contains duplicate entries for Greff et al. (2020) and several incomplete reference strings (e.g., Eastwood and Williams without a year or venue); these should be cleaned.
  6. [Table 2; Section 5] The RGB-MSE caveat is acknowledged, but because the compared models reconstruct different target spaces, the RGB-MSE values are not directly comparable across columns; reporting reconstruction loss in the respective target space would make the comparison cleaner.

Circularity Check

0 steps flagged · score 1.0 of 10

No significant circularity: the RGB-S gains are empirical measurements on held-out test sets of standard benchmarks; the saturation motivation rests on independent color-statistics evidence (Table D5, Appendix D.4), and no self-citations or test-fitted parameters appear in the derivation chain.

full rationale

The paper's central claim is an empirical measurement: Slot Attention models trained to predict RGB-S targets achieve higher FG-ARI, mIoU, and DCI scores than RGB targets on five standard evaluation datasets (Table 2). None of the method's components (the RGB-S target definition, the slot-attention architecture, the reconstruction loss) are fitted to the test data, so the reported improvements are not forced by construction. The conceptual premise that saturation is uncorrelated with RGB, continuous, and robust to lighting is supported by independent statistical evidence (Table D5 reports Pearson correlations across ClevrTex/COCO/ImageNet; Appendix D.4 reports lighting-shift experiments on newly generated scenes), and this evidence is not derived from the downstream segmentation improvement. There are no self-citations in the reference list; the load-bearing baseline (Slot Attention, Locatello et al. 2020) and all metrics (FG-ARI, mIoU, DCI) are external conventions, so no uniqueness argument or ansatz is imported from the authors' own prior work. The legitimate concerns in this paper are validity and robustness issues, not circularity. Section 5.1.2's own note that the best RGB seed on MultiShapeNet-4 reaches 84.1 FG-ARI, matching the RGB-S mean of 82.1, shows that part of the gain reflects a reduction in degenerate seeds rather than a uniform representational advantage. In addition, no control condition with an arbitrary extra channel (e.g., a duplicated R channel or a constant channel) isolates saturation's specific statistical properties from a pure increase in decoder output dimensionality, so the causal attribution in Section 3.3 is under-tested. The paper itself flags this heuristic in Section 6: 'we base our argument on the non-correlation to detect suitable complementary color channels. However, more elaborate techniques considering the data distribution of pixels may be needed...' These caveats weaken the strength of the causal claim but do not make any prediction definitionally equal to its inputs. No circular step can be exhibited, so the appropriate finding is near-zero circularity with the confounding-channel concern noted as correctness risk rather than circularity.

Assumptions & free parameters 0 free parameters · 3 assumptions · 0 invented entities

The central claim rests on a small set of domain assumptions about color statistics and their effect on unsupervised binding, not on fitted free parameters. The method itself introduces no numeric free parameters beyond the standard slot-attention hyperparameters taken from prior work. The main unstated choice is the categorical selection of saturation as the complementary channel after trying several combinations.

assumptions (3)
  • domain assumption Color channels that are uncorrelated with RGB and robust to lighting provide a stronger unsupervised training signal for object-centric binding than correlated channels.
    This is the conceptual bridge from correlation statistics (Table D5) to the expected improvement of RGB-S; it is supported indirectly by experiments but not derived. Invoked in Section 3.3 and used to justify the choice of RGB-S.
  • domain assumption The discontinuity of the HSV hue channel is the cause of slot degeneration on simpler datasets such as CLEVR, rather than some other property of the HSV target.
    Stated in Section 3.2 to explain why HSV works on ClevrTex but degenerates on CLEVR; no controlled ablation isolates hue discontinuity from other HSV properties.
  • domain assumption A pixel-wise MSE reconstruction loss over the augmented color channels is an appropriate objective for learning object-centric representations, and the network can faithfully predict the added saturation channel from RGB input.
    The method changes the target space but keeps the reconstruction loss; the paper does not analyze the optimization landscape or whether the decoder actually uses the saturation channel as intended.

how reviews work

0 comments
Cite this review

Pith. "Pith review of Leveraging Color Channel Independence for Improved Unsupervised Object Detection." pith.science (2026). https://pith.science/paper/J4Y7XE27

@misc{pith2026241215150,
  author       = {Pith},
  title        = {Pith review of: Leveraging Color Channel Independence for Improved Unsupervised Object Detection},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/J4Y7XE27}},
  note         = {Machine review of arXiv:2412.15150}
}
read the original abstract

Object-centric architectures can learn to extract distinct object representations from visual scenes, enabling downstream applications on the object level. Similarly to autoencoder-based image models, object-centric approaches have been trained on the unsupervised reconstruction loss of images encoded by RGB color spaces. In our work, we challenge the common assumption that RGB images are the optimal color space for unsupervised learning in computer vision. We discuss conceptually and empirically that other color spaces, such as HSV, bear essential characteristics for object-centric representation learning, like robustness to lighting conditions. We further show that models improve when requiring them to predict additional color channels. Specifically, we propose to transform the predicted targets to the RGB-S space, which extends RGB with HSV's saturation component and leads to markedly better reconstruction and disentanglement for five common evaluation datasets. The use of composite color spaces can be implemented with basically no computational overhead, is agnostic of the models' architecture, and is universally applicable across a wide range of visual computing tasks and training types. The findings of our approach encourage additional investigations in computer vision tasks beyond object-centric learning.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

77 extracted references · 39 canonical work pages

  1. [1]

    write newline

    " write newline " cite write " FUNCTION editor.postfix editor num.names #1 > "( )" "( )" if FUNCTION editor.trans.postfix editor num.names #1 > "( )" "( )" if FUNCTION trans.postfix translator num.names #1 > "( )" "( )" if FUNCTION authors.editors.reflist.apa5 'field := 'dot := field num.names 'numnames := numnames 'format.num.names := format.num.names na...

  2. [2]

    , " * write output.state after.block = add.period write newline

    ENTRY address author booktitle chapter doi edition editor eid howpublished institution journal key keywords month note number organization pages publisher school series title type url volume year eprint archive archivePrefix primaryClass adsurl adsnote version label INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.sta...

  3. [3]

    write newline

    " write newline "" before.all 'output.state := FUNCTION if.digit duplicate "0" = swap duplicate "1" = swap duplicate "2" = swap duplicate "3" = swap duplicate "4" = swap duplicate "5" = swap duplicate "6" = swap duplicate "7" = swap duplicate "8" = swap "9" = or or or or or or or or or FUNCTION n.separate 't := "" #0 'numnames := t empty not t #-1 #1 subs...

  4. [4]

    write newline

    " write newline "" before.all 'output.state := FUNCTION output.doi doi empty skip "doi:" doi * "" * output if FUNCTION format.archive archivePrefix empty "" archivePrefix ":" * if FUNCTION format.primaryClass primaryClass empty "" " [" primaryClass * "] " * if FUNCTION format.eprint eprint empty "" archive empty " https://arxiv.org/abs/" eprint * " " * " ...

  5. [5]

    , " * write output.state after.block = add.period write newline

    ENTRY address archive author booktitle chapter edition editor eprint howpublished institution journal key keywords month note number organization pages publisher school series title type url doi volume year archivePrefix primaryClass eid adsurl adsnote version label INTEGERS output.state before.all mid.sentence after.sentence after.block FUNCTION init.sta...

  6. [6]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize " " * FUNCT...

  7. [7]

    Available from:

    ENTRY address assignee author booktitle chapter cartographer day edition editor howpublished institution inventor journal key keywords month note number organization pages part publisher school series title type volume word year eprint doi url lastchecked updated archive archivePrefix primaryClass eid adsurl adsnote version label INTEGERS output.state bef...

  8. [8]

    write newline

    " write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 global.max substring 't := if while FUNCTION word.in bbl.in capitalize ":" * " " *...

Show all 77 references
  1. [9]

    , Gil-Rodríguez , R

    barticle Akbarinia , A. , Gil-Rodríguez , R. : Color conversion in deep autoencoders . Journal of Perceptual Imaging 4 ( 2 ), 020401 -- 102040110 ( 2021 ) 10.2352/j.percept.imaging.2021.4.2.020401 barticle

  2. [10]

    , Xie , W

    bchapter Aydemir , G. , Xie , W. , Guney , F. : Self-supervised object-centric learning for videos . In: Oh , A. , Naumann , T. , Globerson , A. , Saenko , K. , Hardt , M. , Levine , S. (eds.) Advances in Neural Information Processing Systems , vol. 36 , pp. 32879 -- 32899 ( 2...

  3. [11]

    , Courville , A

    barticle Bengio , Y. , Courville , A. , Vincent , P. : Representation learning: A review and new perspectives . IEEE transactions on pattern analysis and machine intelligence 35 , 1798 -- 1828 ( 2013 ) 10.1109/TPAMI.2013.50 barticle

  4. [12]

    , Van Steenkiste , S

    bchapter Biza , O. , Van Steenkiste , S. , Sajjadi , M.S.M. , Elsayed , G.F. , Mahendran , A. , Kipf , T. : Invariant slot attention: object discovery with slot-centric reference frames . In: Proceedings of the 40th International Conference on Machine Learning . ICML'23 ( 2023...

  5. [13]

    o lkopf , B. , Von K\

    bchapter Brady , J. , Zimmermann , R.S. , Sharma , Y. , Sch\" o lkopf , B. , Von K\" u gelgen , J. , Brendel , W. : Provably learning object-centric representations . In: Proceedings of the 40th International Conference on Machine Learning . ICML'23 ( 2023 ) bchapter

  6. [14]

    , Funkhouser , T.A

    botherref Chang , A.X. , Funkhouser , T.A. , Guibas , L.J. , Hanrahan , P. , Huang , Q.-X. , Li , Z. , Savarese , S. , Savva , M. , Song , S. , Su , H. , Xiao , J. , Yi , L. , Yu , F. : Shapenet: An information-rich 3d model repository. ArXiv abs/1512.03012 (2015) botherref

  7. [15]

    https://www.robots.ox.ac.uk/ vgg/data/clevrtex/

    botherref ClevrTex Download Page . https://www.robots.ox.ac.uk/ vgg/data/clevrtex/. Accessed: 2024-09-29 botherref

  8. [16]

    https://github.com/karazijal/clevrtex-generation

    botherref Clevrtex Generation Code . https://github.com/karazijal/clevrtex-generation. Accessed: 2024-11-22 botherref

  9. [17]

    , Touvron , H

    bchapter Caron , M. , Touvron , H. , Misra , I. , Jegou , H. , Mairal , J. , Bojanowski , P. , Joulin , A. : Emerging properties in self-supervised vision transformers . In: 2021 IEEE/CVF International Conference on Computer Vision (ICCV) , pp. 9630 -- 9640 ( 2021 ). 10.1109/I...

  10. [18]

    , Chang , M.-W

    bchapter Devlin , J. , Chang , M.-W. , Lee , K. , Toutanova , K. : BERT : Pre-training of deep bidirectional transformers for language understanding . In: Burstein , J. , Doran , C. , Solorio , T. (eds.) Proceedings of the 2019 Conference of the North A merican Chapter of the ...

  11. [19]

    , Dong , W

    bchapter Deng , J. , Dong , W. , Socher , R. , Li , L.-J. , L- , K. , F.-F. , L. : Imagenet: A large-scale hierarchical image database . In: 2009 IEEE Conference on Computer Vision and Pattern Recognition , pp. 248 -- 255 ( 2009 ). 10.1109/CVPR.2009.5206848 bchapter

  12. [20]

    , Hill , F

    bchapter Ding , D. , Hill , F. , Santoro , A. , Reynolds , M. , Botvinick , M. : Attention over learned object embeddings enables complex visual reasoning . In: Ranzato , M. , Beygelzimer , A. , Dauphin , Y. , Liang , P.S. , Vaughan , J.W. (eds.) Advances in Neural Information...

  13. [21]

    https://github.com/facebookresearch/dino/tree/main

    botherref DINO Code . https://github.com/facebookresearch/dino/tree/main. Accessed: 2024-11-25 botherref

  14. [22]

    , Zhou , Z

    bchapter Du , X. , Zhou , Z. , Wu , X. , Wang , Y. , Wang , Z. , Zheng , Jin , C. : Multicolor: Image colorization by learning from multiple color spaces . In: ACM Multimedia 2024 ( 2024 ). https://openreview.net/forum?id=Zo4P2F7xLY bchapter

  15. [23]

    , Mahendran , A

    botherref Elsayed , G.F. , Mahendran , A. , Steenkiste , S. , Greff , K. , Mozer , M.C. , Kipf , T. : SAVi ++: Towards End -to- End Object - Centric Learning from Real - World Videos . arXiv. arXiv:2206.07764 [cs] (2022). 10.48550/arXiv.2206.07764 . http://arxiv.org/abs/2206.0...

  16. [24]

    , Mahendran , A

    bchapter Elsayed , G.F. , Mahendran , A. , Steenkiste , S. , Greff , K. , Mozer , M.C. , Kipf , T. : SAVi++ : Towards end-to-end object-centric learning from real-world videos . In: Advances in Neural Information Processing Systems ( 2022 ) bchapter

  17. [25]

    , Williams , C.K.I

    botherref Eastwood , C. , Williams , C.K.I. : A framework for the quantitative evaluation of disentangled representations. In: International Conference on Learning Representations, Year= 2018 . https://api.semanticscholar.org/CorpusID:19571619 botherref

  18. [26]

    , Bai , Z

    botherref Fan , K. , Bai , Z. , Xiao , T. , He , T. , Horn , M. , Fu , Y. , Locatello , F. , Zhang , Z. : Adaptive slot attention: Object discovery with dynamic slot number. ArXiv abs/2406.09196 (2024) botherref

  19. [27]

    , Pylyshyn , Z.W

    barticle Fodor , J.A. , Pylyshyn , Z.W. : Connectionism and cognitive architecture: A critical analysis . Cognition 28 ( 1 ), 3 -- 71 ( 1988 ) 10.1016/0010-0277(88)90031-5 barticle

  20. [29]

    , Steenkiste , S

    botherref Greff , K. , Steenkiste , S. , Schmidhuber , J. : On the binding problem in artificial neural networks. CoRR abs/2012.05208 (2020) https://arxiv.org/abs/2012.05208 2012.05208 botherref

  21. [30]

    , Yuan , C

    bchapter Gowda , S.N. , Yuan , C. : Colornet: Investigating the importance of color spaces for image classification . In: Computer Vision--ACCV 2018: 14th Asian Conference on Computer Vision, Perth, Australia, December 2--6, 2018, Revised Selected Papers, Part IV 14 , pp. 581 ...

  22. [31]

    , Hariharan , B

    botherref Johnson , J. , Hariharan , B. , Maaten , L. , F.-F. , L. , Zitnick , C.L. , Girshick , R. : CLEVR: A Diagnostic Dataset for Compositional Language and Elementary Visual Reasoning (2016). https://arxiv.org/abs/1612.06890 botherref

  23. [32]

    , Choi , J

    bchapter Kim , J. , Choi , J. , Choi , H.-J. , Kim , S. : Shepherding slots to objects: Towards stable and robust object-centric learning , pp. 19198 -- 19207 ( 2023 ). 10.1109/CVPR52729.2023.01840 bchapter

  24. [33]

    , Elsayed , G.F

    botherref Kipf , T. , Elsayed , G.F. , Mahendran , A. , Stone , A. , Sabour , S. , Heigold , G. , Jonschkowski , R. , Dosovitskiy , A. , Greff , K. : Conditional Object - Centric Learning from Video . arXiv. arXiv:2111.12594 [cs, stat] (2022). 10.48550/arXiv.2111.12594 . http:...

  25. [34]

    , Laina , I

    botherref Karazija , L. , Laina , I. , Rupprecht , C. : Clevrtex: A texture-rich benchmark for unsupervised multi-object segmentation. ArXiv abs/2111.10265 (2021) botherref

  26. [35]

    https://console.cloud.google.com/storage/browser/multi-object-datasets

    botherref Cloud Storage-Buckets Multi-Object-Datasets (Clevr). https://console.cloud.google.com/storage/browser/multi-object-datasets. Accessed: 2024-09-29 botherref

  27. [36]

    , Pol , E

    botherref Kipf , T. , Pol , E. , Welling , M. : Contrastive Learning of Structured World Models (2020). https://arxiv.org/abs/1911.12247 botherref

  28. [37]

    , Weyrich , T

    botherref Kim , M.H. , Weyrich , T. , Kautz , J. : Modeling human color perception under extended luminance levels. ACM Trans. Graph. 28(3) (2009) 10.1145/1531326.1531333 botherref

  29. [38]

    , An , S

    bchapter Li , B. , An , S. , Liu , W. , Krishna , A. : The mcf model: Utilizing multiple colors for face recognition . In: 2011 Sixth International Conference on Image and Graphics , pp. 1029 -- 1034 ( 2011 ). 10.1109/ICIG.2011.109 bchapter

  30. [39]

    , Abbati , G

    bbook Locatello , F. , Abbati , G. , Rainforth , T. , Bauer , S. , Sch\" o lkopf , B. , Bachem , O. : On the fairness of disentangled representations . Curran Associates Inc. , Red Hook, NY, USA ( 2019 ) bbook

  31. [40]

    , Eastwood , C

    bchapter Li , N. , Eastwood , C. , Fisher , R. : Learning object-centric representations of multi-object scenes from multiple views . In: Larochelle , H. , Ranzato , M. , Hadsell , R. , Balcan , M.F. , Lin , H. (eds.) Advances in Neural Information Processing Systems , vol. 33...

  32. [41]

    , Maire , M

    bchapter Lin , T.-Y. , Maire , M. , Belongie , S. , Hays , J. , Perona , P. , Ramanan , D. , Doll \'a r , P. , Zitnick , C.L. : Microsoft coco: Common objects in context . In: Computer Vision--ECCV 2014: 13th European Conference, Zurich, Switzerland, September 6-12, 2014, Proc...

  33. [42]

    https://github.com/google-research/disentanglement_lib.git

    botherref Disentanglement Library . https://github.com/google-research/disentanglement_lib.git. Accessed: 2024-05-22 botherref

  34. [43]

    , Ullman , T.D

    botherref Lake , B.M. , Ullman , T.D. , Tenenbaum , J.B. , Gershman , S.J. : Building machines that learn and think like people. Behavioral and Brain Sciences 40 (2017) 10.1017/s0140525x16001837 botherref

  35. [44]

    , Weissenborn , D

    bchapter Locatello , F. , Weissenborn , D. , Unterthiner , T. , Mahendran , A. , Heigold , G. , Uszkoreit , J. , Dosovitskiy , A. , Kipf , T. : Object-centric learning with slot attention . In: Larochelle , H. , Ranzato , M. , Hadsell , R. , Balcan , M.F. , Lin , H. (eds.) Adv...

  36. [45]

    , Yoon , S

    bchapter Lim , H. , Yoon , S. , Sull , S. : Transfer learning using transformation: Is large unlabeled data helpful at segmentation? In: 2020 International Conference on Information and Communication Technology Convergence (ICTC) , pp. 387 -- 390 ( 2020 ). 10.1109/ICTC49870.20...

  37. [46]

    u ller , G.E. , Lipsk , J.A.B. : \

    bbook M \"u ller , G.E. , Lipsk , J.A.B. : \"U ber die Farbenempfindungen: Psychophysische Untersuchungen . Zeitschrift f \"u r Psychologie und Physiologie der Sinnesorgane: Zeitschrift f \"u r Psychologie , vol. Bd. 1 ( 1930 ). https://books.google.de/books?id=nEvR0AEACAAJ bbook

  38. [47]

    https://console.cloud.google.com/storage/browser/kubric-public/tfds/movi_c/

    botherref Cloud Storage-Buckets Kubric Public, Movi-C. https://console.cloud.google.com/storage/browser/kubric-public/tfds/movi_c/. Accessed: 2024-09-29 botherref

  39. [48]

    , Sergievskiy , N

    barticle Mishkin , D. , Sergievskiy , N. , Matas , J. : Systematic evaluation of convolution neural network advances on the imagenet . Computer Vision and Image Understanding 161 , 11 -- 19 ( 2017 ) 10.1016/j.cviu.2017.05.007 barticle

  40. [49]

    https://console.cloud.google.com/storage/browser/kubric-public/tfds/msn_easy/msn_easy_frames

    botherref Cloud Storage-Buckets Kubric Public (Multishapenet). https://console.cloud.google.com/storage/browser/kubric-public/tfds/msn_easy/msn_easy_frames. Accessed: 2024-09-29 botherref

  41. [50]

    , Wang , S

    barticle Miao , M. , Wang , S. : Pa-colornet: progressive attention network based on rgb and hsv color spaces to improve the visual quality of underwater images . Signal, Image and Video Processing 17 ( 7 ), 3405 -- 3413 ( 2023 ) 10.1007/s11760-023-02562-7 barticle

  42. [51]

    : Perceptually uniform color spaces for color texture analysis: an empirical evaluation

    barticle Paschos , G. : Perceptually uniform color spaces for color texture analysis: an empirical evaluation . IEEE Transactions on Image Processing 10 ( 6 ), 932 -- 937 ( 2001 ) 10.1109/83.923289 barticle

  43. [52]

    , Korbas , G.P

    bchapter Podpora , M. , Korbas , G.P. , Kawala-Janik , A. : Yuv vs rgb-choosing a color space for human-machine interaction. In: FedCSIS (Position Papers) , pp. 29 -- 34 ( 2014 ). Citeseer bchapter

  44. [53]

    , Ding , S

    bchapter Qian , R. , Ding , S. , Liu , X. , Lin , D. : Semantics meets temporal correspondence: Self-supervised object-centric learning in videos . In: 2023 IEEE/CVF International Conference on Computer Vision (ICCV) , pp. 16629 -- 16641 . IEEE Computer Society , Los Alamitos,...

  45. [54]

    , Kim , J.W

    botherref Radford , A. , Kim , J.W. , Hallacy , C. , Ramesh , A. , Goh , G. , Agarwal , S. , Sastry , G. , Askell , A. , Mishkin , P. , Clark , J. , Krueger , G. , Sutskever , I. : Learning Transferable Visual Models From Natural Language Supervision (2021). https://arxiv.org/...

  46. [55]

    , Cowan , W.B

    barticle Schwarz , M.W. , Cowan , W.B. , Beatty , J.C. : An experimental comparison of rgb, yiq, lab, hsv, and opponent color models . ACM Trans. Graph. 6 ( 2 ), 123 -- 158 ( 1987 ) 10.1145/31336.31338 barticle

  47. [56]

    , Chang , K.I

    bchapter Shin , M.C. , Chang , K.I. , Tsap , L.V. : Does colorspace transformation make any difference on skin detection? In: Sixth IEEE Workshop on Applications of Computer Vision, 2002. (WACV 2002). Proceedings. , pp. 275 -- 279 ( 2002 ). 10.1109/ACV.2002.1182194 bchapter

  48. [57]

    , Haddow , B

    bchapter Sennrich , R. , Haddow , B. , Birch , A. : Neural machine translation of rare words with subword units . In: Erk , K. , Smith , N.A. (eds.) Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pp. 1715 -- 17...

  49. [58]

    , Horn , M

    botherref Seitzer , M. , Horn , M. , Zadaianchuk , A. , Zietlow , D. , Xiao , T. , Simon-Gabriel , C.-J. , He , T. , Zhang , Z. , Schölkopf , B. , Brox , T. , Locatello , F. : Bridging the Gap to Real - World Object - Centric Learning . arXiv. arXiv:2209.14860 [cs] (2023). 10....

  50. [59]

    , Kim , Y

    bchapter Singh , G. , Kim , Y. , Ahn , S. : Neural systematic binder . In: The Eleventh International Conference on Learning Representations ( 2023 ). https://openreview.net/forum?id=ZPHE4fht19t bchapter

  51. [60]

    , Kersting , K

    botherref Stelzner , K. , Kersting , K. , Kosiorek , A.R. : Decomposing 3D Scenes into Objects via Unsupervised Volume Segmentation (2021). https://arxiv.org/abs/2104.01148 botherref

  52. [61]

    , Locatello , F

    barticle Sch \"o lkopf , B. , Locatello , F. , Bauer , S. , Ke , N.R. , Kalchbrenner , N. , Goyal , A. , Bengio , Y. : Toward causal representation learning . Proceedings of the IEEE 109 ( 5 ), 612 -- 634 ( 2021 ) 10.1109/JPROC.2021.3058954 . *equal contribution barticle

  53. [62]

    : Color gamut transform pairs

    bchapter Smith , A.R. : Color gamut transform pairs . In: Proceedings of the 5th Annual Conference on Computer Graphics and Interactive Techniques . SIGGRAPH '78 , pp. 12 -- 19 . Association for Computing Machinery , New York, NY, USA ( 1978 ). 10.1145/800248.807361 . https://...

  54. [63]

    , Wu , Y.-F

    botherref Singh , G. , Wu , Y.-F. , Ahn , S. : Simple unsupervised object-centric learning for complex and naturalistic videos. ArXiv abs/2205.14065 (2022) botherref

  55. [64]

    , Wüst , A

    botherref Stammer , W. , Wüst , A. , Steinmann , D. , Kersting , K. : Neural Concept Binder (2024). https://arxiv.org/abs/2406.09949 botherref

  56. [65]

    https://www.tensorflow.org/io/tutorials/colorspace7

    botherref Tensorflow Color Space Conversions. https://www.tensorflow.org/io/tutorials/colorspace7. Accessed: 2024-09-29 botherref

  57. [66]

    , Li , J

    bchapter Tan , L. , Li , J. , Niu , L. , Zhang , L. : Deep image harmonization in dual color spaces . In: Proceedings of the 31st ACM International Conference on Multimedia . MM '23 , pp. 2159 -- 2167 . Association for Computing Machinery , New York, NY, USA ( 2023 ). 10.1145/...

  58. [67]

    , Passalis , N

    bchapter Taipalmaa , J. , Passalis , N. , Raitoharju , J. : Different color spaces in deep learning-based water segmentation for autonomous marine operations . In: 2020 IEEE International Conference on Image Processing (ICIP) , pp. 3169 -- 3173 ( 2020 ). IEEE bchapter

  59. [68]

    , Macaire , L

    barticle Vandenbroucke , N. , Macaire , L. , Postaire , J.-G. : Color image segmentation by pixel classification in an adapted hybrid color space. application to soccer image analysis . Computer Vision and Image Understanding 90 ( 2 ), 190 -- 216 ( 2003 ) barticle

  60. [69]

    , Shazeer , N

    bchapter Vaswani , A. , Shazeer , N. , Parmar , N. , Uszkoreit , J. , Jones , L. , Gomez , A.N. , Kaiser , L. , Polosukhin , I. : Attention is all you need . In: Guyon , I. , Luxburg , U.V. , Bengio , S. , Wallach , H. , Fergus , R. , Vishwanathan , S. , Garnett , R. (eds.) Ad...

  61. [70]

    , Brady , J

    botherref Wiedemer , T. , Brady , J. , Panfilov , A. , Juhos , A. , Bethge , M. , Brendel , W. : Provable Compositional Generalization for Object-Centric Learning (2023) botherref

  62. [71]

    , Dittadi , A

    bchapter Wenzel , F. , Dittadi , A. , Gehler , P. , Simon-Gabriel , C.-J. , Horn , M. , Zietlow , D. , Kernert , D. , Russell , C. , Brox , T. , Schiele , B. , Sch\" o lkopf , B. , Locatello , F. : Assaying out-of-distribution generalization in transfer learning . In: Koyejo ,...

  63. [72]

    , Zhao , B

    bchapter Wen , X. , Zhao , B. , Zheng , A. , Zhang , X. , Qi , X. : Self-supervised visual representation learning with semantic grouping . In: Proceedings of the 36th International Conference on Neural Information Processing Systems . NIPS '22 . Curran Associates Inc. , Red H...

  64. [73]

    , De Mello , S

    bchapter Xu , J. , De Mello , S. , Liu , S. , Byeon , W. , Breuel , T. , Kautz , J. , Wang , X. : Groupvit: Semantic segmentation emerges from text supervision . In: 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR) , pp. 18113 -- 18123 ( 2022 ). 10.11...

  65. [74]

    , Wang , V

    botherref Zhao , R. , Wang , V. , Kannala , J. , Pajarinen , J. : Grouped discrete representation for object-centric learning (2024) 10.48550/arXiv.2411.02299 botherref

  66. [75]

    , " * write output.state after.block = add.period write newline

    ENTRY address archive author booktitle chapter doi edition editor eid eprint howpublished institution journal key keywords month note number organization pages publisher school series title type url volume year archivePrefix primaryClass adsurl adsnote version label extra.labe...

  67. [76]

    write newline

    " write newline "" before.all 'output.state := FUNCTION add.period duplicate empty 'skip "." * add.blank if FUNCTION if.digit duplicate "0" = swap duplicate "1" = swap duplicate "2" = swap duplicate "3" = swap duplicate "4" = swap duplicate "5" = swap duplicate "6" = swap dupl...

  68. [77]

    write newline

    " write newline "" before.all 'output.state := FUNCTION string.to.integer 't := t text.length 'k := #1 'char.num := t char.num #1 substring 's := s is.num s "." = or char.num k = not and char.num #1 + 'char.num := while char.num #1 - 'char.num := t #1 char.num substring FUNCTI...

  69. [78]

    write newline

    " write newline "" before.all 'output.state := FUNCTION string.to.integer 't := t text.length 'k := #1 'char.num := t char.num #1 substring 's := s is.num s "." = or char.num k = not and char.num #1 + 'char.num := while char.num #1 - 'char.num := t #1 char.num substring FUNCTI...

Pith tools

Reviewed August 11, 2026 · model on record in the stance chip above.