├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── automation ├── data.csv ├── generate.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .vscode/ 3 | 4 | env/ 5 | venv/ 6 | 7 | .DS_Store 8 | .ipynb_checkpoints -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## 🦸 contributor guide 2 | 3 | - fork and clone the repository (command below clones the original repository) 4 | 5 | ```bash 6 | git clone https://github.com/SkalskiP/top-cvpr-2024-papers.git 7 | ``` 8 | 9 | - navigate to the `automation` directory 10 | 11 | ```bash 12 | cd top-cvpr-2024-papers/automation 13 | ``` 14 | 15 | - setup and activate python environment (optional, but recommended) 16 | 17 | ```bash 18 | python3 -m venv venv 19 | source venv/bin/activate 20 | ``` 21 | 22 | - install dependencies 23 | 24 | ```bash 25 | pip install -r requirements.txt 26 | ``` 27 | 28 | - update `data.csv` with awesome CVPR 2024 papers 29 | 30 | - update `README.md` with the following command 31 | 32 | ```bash 33 | python automation/generate.py 34 | ``` -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |  2 | 3 |
7 | 8 |
34 |
35 |
36 |
37 |
38 | 🔥 SpatialTracker: Tracking Any 2D Pixels in 3D Space
39 |
40 |
41 | Yuxi Xiao, Qianqian Wang, Shangzhan Zhang, Nan Xue, Sida Peng, Yujun Shen, Xiaowei Zhou
42 |
43 | [paper] [code]
44 |
45 | Topic: 3D from multi-view and sensors
46 |
47 | Session: Fri 21 Jun 1:30 p.m. EDT — 3 p.m. EDT #84
48 |
54 |
55 |
56 |
57 |
58 | ViewDiff: 3D-Consistent Image Generation with Text-to-Image Models
59 |
60 |
61 | Lukas Höllein, Aljaž Božič, Norman Müller, David Novotny, Hung-Yu Tseng, Christian Richardt, Michael Zollhöfer, Matthias Nießner
62 |
63 | [paper] [code] [video]
64 |
65 | Topic: 3D from multi-view and sensors
66 |
67 | Session: Wed 19 Jun 8 p.m. EDT — 9:30 p.m. EDT #20
68 |
74 |
75 | OmniGlue: Generalizable Feature Matching with Foundation Model Guidance
76 |
77 |
78 | Hanwen Jiang, Arjun Karpur, Bingyi Cao, Qixing Huang, Andre Araujo
79 |
80 | [paper] [code] [demo]
81 |
82 | Topic: 3D from multi-view and sensors
83 |
84 | Session: Fri 21 Jun 1:30 p.m. EDT — 3 p.m. EDT #32
85 |
91 |
92 |
93 |
94 |
95 | 🔥 Florence-2: Advancing a Unified Representation for a Variety of Vision Tasks
96 |
97 |
98 | Bin Xiao, Haiping Wu, Weijian Xu, Xiyang Dai, Houdong Hu, Yumao Lu, Michael Zeng, Ce Liu, Lu Yuan
99 |
100 | [paper] [video] [demo] [colab]
101 |
102 | Topic: Deep learning architectures and techniques
103 |
104 | Session: Wed 19 Jun 8 p.m. EDT — 9:30 p.m. EDT #102
105 |
112 |
113 | DocRes: A Generalist Model Toward Unifying Document Image Restoration Tasks
114 |
115 |
116 | Jiaxin Zhang, Dezhi Peng, Chongyu Liu, Peirong Zhang, Lianwen Jin
117 |
118 | [paper] [code] [demo]
119 |
120 | Topic: Document analysis and understanding
121 |
122 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #101
123 |
129 |
130 |
131 |
132 |
133 | 🔥 EfficientSAM: Leveraged Masked Image Pretraining for Efficient Segment Anything
134 |
135 |
136 | Yunyang Xiong, Bala Varadarajan, Lemeng Wu, Xiaoyu Xiang, Fanyi Xiao, Chenchen Zhu, Xiaoliang Dai, Dilin Wang, Fei Sun, Forrest Iandola, Raghuraman Krishnamoorthi, Vikas Chandra
137 |
138 | [paper] [code] [demo]
139 |
140 | Topic: Efficient and scalable vision
141 |
142 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #144
143 |
149 |
150 |
151 |
152 |
153 | MobileCLIP: Fast Image-Text Models through Multi-Modal Reinforced Training
154 |
155 |
156 | Pavan Kumar Anasosalu Vasu, Hadi Pouransari, Fartash Faghri, Raviteja Vemulapalli, Oncel Tuzel
157 |
158 | [paper] [code] [demo]
159 |
160 | Topic: Efficient and scalable vision
161 |
162 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #130
163 |
170 |
171 |
172 |
173 |
174 | 🔥 Describing Differences in Image Sets with Natural Language
175 |
176 |
177 | Lisa Dunlap, Yuhui Zhang, Xiaohan Wang, Ruiqi Zhong, Trevor Darrell, Jacob Steinhardt, Joseph E. Gonzalez, Serena Yeung-Levy
178 |
179 | [paper] [code]
180 |
181 | Topic: Explainable computer vision
182 |
183 | Session: Fri 21 Jun 8 p.m. EDT — 9:30 p.m. EDT #115
184 |
191 |
192 | DemoFusion: Democratising High-Resolution Image Generation With No $$$
193 |
194 |
195 | Ruoyi Du, Dongliang Chang, Timothy Hospedales, Yi-Zhe Song, Zhanyu Ma
196 |
197 | [paper] [code] [demo] [colab]
198 |
199 | Topic: Image and video synthesis and generation
200 |
201 | Session: Wed 19 Jun 8 p.m. EDT — 9:30 p.m. EDT #132
202 |
207 |
208 |
209 |
210 |
211 | 🔥 DragDiffusion: Harnessing Diffusion Models for Interactive Point-based Image Editing
212 |
213 |
214 | Yujun Shi, Chuhui Xue, Jun Hao Liew, Jiachun Pan, Hanshu Yan, Wenqing Zhang, Vincent Y. F. Tan, Song Bai
215 |
216 | [paper] [code] [video]
217 |
218 | Topic: Image and video synthesis and generation
219 |
220 | Session: Wed 19 Jun 8 p.m. EDT — 9:30 p.m. EDT #392
221 |
227 |
228 |
229 |
230 |
231 | 🔥 Visual Anagrams: Generating Multi-View Optical Illusions with Diffusion Models
232 |
233 |
234 | Daniel Geng, Inbum Park, Andrew Owens
235 |
236 | [paper] [code] [colab]
237 |
238 | Topic: Image and video synthesis and generation
239 |
240 | Session: Fri 21 Jun 8 p.m. EDT — 9:30 p.m. EDT #118
241 |
248 |
249 |
250 |
251 |
252 | XFeat: Accelerated Features for Lightweight Image Matching
253 |
254 |
255 | Guilherme Potje, Felipe Cadar, Andre Araujo, Renato Martins, Erickson R. Nascimento
256 |
257 | [paper] [code] [video] [demo] [colab]
258 |
259 | Topic: Low-level vision
260 |
261 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #245
262 |
268 |
269 |
270 |
271 |
272 | Robust Image Denoising through Adversarial Frequency Mixup
273 |
274 |
275 | Donghun Ryou, Inju Ha, Hyewon Yoo, Dongwan Kim, Bohyung Han
276 |
277 | [paper] [code] [video]
278 |
279 | Topic: Low-level vision
280 |
281 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #250
282 |
289 |
290 | 🔥 Improved Baselines with Visual Instruction Tuning
291 |
292 |
293 | Haotian Liu, Chunyuan Li, Yuheng Li, Yong Jae Lee
294 |
295 | [paper] [code]
296 |
297 | Topic: Multi-modal learning
298 |
299 | Session: Fri 21 Jun 8 p.m. EDT — 9:30 p.m. EDT #209
300 |
306 |
307 |
308 |
309 |
310 | DETRs Beat YOLOs on Real-time Object Detection
311 |
312 |
313 | Yian Zhao, Wenyu Lv, Shangliang Xu, Jinman Wei, Guanzhong Wang, Qingqing Dang, Yi Liu, Jie Chen
314 |
315 | [paper] [code] [video]
316 |
317 | Topic: Recognition: Categorization, detection, retrieval
318 |
319 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #229
320 |
326 |
327 |
328 |
329 |
330 | YOLO-World: Real-Time Open-Vocabulary Object Detection
331 |
332 |
333 | Tianheng Cheng, Lin Song, Yixiao Ge, Wenyu Liu, Xinggang Wang, Ying Shan
334 |
335 | [paper] [code] [video] [demo] [colab]
336 |
337 | Topic: Recognition: Categorization, detection, retrieval
338 |
339 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #223
340 |
346 |
347 |
348 |
349 |
350 | 🔥 Object Recognition as Next Token Prediction
351 |
352 |
353 | Kaiyu Yue, Bor-Chun Chen, Jonas Geiping, Hengduo Li, Tom Goldstein, Ser-Nam Lim
354 |
355 | [paper] [code] [video] [colab]
356 |
357 | Topic: Recognition: Categorization, detection, retrieval
358 |
359 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #199
360 |
367 |
368 |
369 |
370 |
371 | 🔥 RobustSAM: Segment Anything Robustly on Degraded Images
372 |
373 |
374 | Wei-Ting Chen, Yu-Jiet Vong, Sy-Yen Kuo, Sizhou Ma, Jian Wang
375 |
376 | [paper] [video]
377 |
378 | Topic: Segmentation, grouping and shape analysis
379 |
380 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #378
381 |
387 |
388 |
389 |
390 |
391 | 🔥 Frozen CLIP: A Strong Backbone for Weakly Supervised Semantic Segmentation
392 |
393 |
394 | Bingfeng Zhang, Siyue Yu, Yunchao Wei, Yao Zhao, Jimin Xiao
395 |
396 | [paper] [code] [video]
397 |
398 | Topic: Segmentation, grouping and shape analysis
399 |
400 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #351
401 |
407 |
408 |
409 |
410 |
411 | 🔥 Semantic-aware SAM for Point-Prompted Instance Segmentation
412 |
413 |
414 | Zhaoyang Wei, Pengfei Chen, Xuehui Yu, Guorong Li, Jianbin Jiao, Zhenjun Han
415 |
416 | [paper] [code] [video]
417 |
418 | Topic: Segmentation, grouping and shape analysis
419 |
420 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #331
421 |
427 |
428 | 🔥 In-Context Matting
429 |
430 |
431 | He Guo, Zixuan Ye, Zhiguo Cao, Hao Lu
432 |
433 | [paper] [code]
434 |
435 | Topic: Segmentation, grouping and shape analysis
436 |
437 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #343
438 |
443 |
444 |
445 |
446 |
447 | 🔥 General Object Foundation Model for Images and Videos at Scale
448 |
449 |
450 | Junfeng Wu, Yi Jiang, Qihao Liu, Zehuan Yuan, Xiang Bai, Song Bai
451 |
452 | [paper] [code] [video]
453 |
454 | Topic: Segmentation, grouping and shape analysis
455 |
456 | Session: Wed 19 Jun 1:30 p.m. EDT — 3 p.m. EDT #350
457 |
464 |
465 |
466 |
467 |
468 | 🔥 InternVL: Scaling up Vision Foundation Models and Aligning for Generic Visual-Linguistic Tasks
469 |
470 |
471 | Zhe Chen, Jiannan Wu, Wenhai Wang, Weijie Su, Guo Chen, Sen Xing, Muyan Zhong, Qinglong Zhang, Xizhou Zhu, Lewei Lu, Bin Li, Ping Luo, Tong Lu, Yu Qiao, Jifeng Dai
472 |
473 | [paper] [code] [demo]
474 |
475 | Topic: Self-supervised or unsupervised representation learning
476 |
477 | Session: Fri 21 Jun 8 p.m. EDT — 9:30 p.m. EDT #412
478 |
485 |
486 |
487 |
488 |
489 | 🔥 Matching Anything by Segmenting Anything
490 |
491 |
492 | Siyuan Li, Lei Ke, Martin Danelljan, Luigi Piccinelli, Mattia Segu, Luc Van Gool, Fisher Yu
493 |
494 | [paper] [code] [video]
495 |
496 | Topic: Video: Low-level analysis, motion, and tracking
497 |
498 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #421
499 |
505 |
506 |
507 |
508 |
509 | DiffMOT: A Real-time Diffusion-based Multiple Object Tracker with Non-linear Prediction
510 |
511 |
512 | Weiyi Lv, Yuhang Huang, Ning Zhang, Ruei-Sung Lin, Mei Han, Dan Zeng
513 |
514 | [paper] [code]
515 |
516 | Topic: Video: Low-level analysis, motion, and tracking
517 |
518 | Session: Thu 20 Jun 8 p.m. EDT — 9:30 p.m. EDT #455
519 |
526 |
527 |
528 |
529 |
530 | Alpha-CLIP: A CLIP Model Focusing on Wherever You Want
531 |
532 |
533 | Zeyi Sun, Ye Fang, Tong Wu, Pan Zhang, Yuhang Zang, Shu Kong, Yuanjun Xiong, Dahua Lin, Jiaqi Wang
534 |
535 | [paper] [code] [video] [demo]
536 |
537 | Topic: Vision, language, and reasoning
538 |
539 | Session: Thu 20 Jun 1:30 p.m. EDT — 3 p.m. EDT #327
540 |
546 |
547 | 🔥 Eyes Wide Shut? Exploring the Visual Shortcomings of Multimodal LLMs
548 |
549 |
550 | Shengbang Tong, Zhuang Liu, Yuexiang Zhai, Yi Ma, Yann LeCun, Saining Xie
551 |
552 | [paper] [code]
553 |
554 | Topic: Vision, language, and reasoning
555 |
556 | Session: Thu 20 Jun 1:30 p.m. EDT — 3 p.m. EDT #390
557 |
562 |
563 |
564 |
565 |
566 | 🔥 LISA: Reasoning Segmentation via Large Language Model
567 |
568 |
569 | Xin Lai, Zhuotao Tian, Yukang Chen, Yanwei Li, Yuhui Yuan, Shu Liu, Jiaya Jia
570 |
571 | [paper] [code] [demo]
572 |
573 | Topic: Vision, language, and reasoning
574 |
575 | Session: Thu 20 Jun 1:30 p.m. EDT — 3 p.m. EDT #413
576 |
582 |
583 |
584 |
585 |
586 | ViP-LLaVA: Making Large Multimodal Models Understand Arbitrary Visual Prompts
587 |
588 |
589 | Mu Cai, Haotian Liu, Dennis Park, Siva Karthik Mustikovela, Gregory P. Meyer, Yuning Chai, Yong Jae Lee
590 |
591 | [paper] [code] [video] [demo]
592 |
593 | Topic: Vision, language, and reasoning
594 |
595 | Session: Thu 20 Jun 1:30 p.m. EDT — 3 p.m. EDT #317
596 |
602 |
603 |
604 |
605 |
606 | 🔥 MMMU: A Massive Multi-discipline Multimodal Understanding and Reasoning Benchmark for Expert AGI
607 |
608 |
609 | Xiang Yue, Yuansheng Ni, Kai Zhang, Tianyu Zheng, Ruoqi Liu, Ge Zhang, Samuel Stevens, Dongfu Jiang, Weiming Ren, Yuxuan Sun, Cong Wei, Botao Yu, Ruibin Yuan, Renliang Sun, Ming Yin, Boyuan Zheng, Zhenzhu Yang, Yibo Liu, Wenhao Huang, Huan Sun, Yu Su, Wenhu Chen
610 |
611 | [paper]
612 |
613 | Topic: Vision, language, and reasoning
614 |
615 | Session: Thu 20 Jun 1:30 p.m. EDT — 3 p.m. EDT #382
616 |
38 |
39 | {}{}
40 |
41 |
42 | {}
43 |
44 | {}
45 |
46 | Topic: {}
47 |
48 | Session: {}
49 |
55 |
56 |
57 |
58 |
59 | {}{}
60 |
61 |
62 | {}
63 |
64 | {}
65 |
66 | Topic: {}
67 |
68 | Session: {}
69 |