[ICCV-23] Paper List - 3D Generation-related
ICCV-23 paper list
目录
Oral Papers
3D from multi-view and sensors
Generative AI
Poster Papers
3D Generation (Neural generative models)
3D from a single image and shape-from-x
3D Editing
Face and gestures
Stylization
Dataset
Oral Papers
3D from multi-view and sensors
- Zip-NeRF: Anti-Aliased Grid-Based Neural Radiance Fields
- Tri-MipRF: Tri-Mip Representation for Efficient Anti-Aliasing Neural Radiance Fields
- LERF: Language Embedded Radiance Fields
- Mixed Neural Voxels for Fast Multi-view Video Synthesis
- Multi-Modal Neural Radiance Field for Monocular Dense SLAM with a Light-Weight ToF Sensor
- Diffusion-Guided Reconstruction of Everyday Hand-Object Interaction Clips
- Instruct-NeRF2NeRF: Editing 3D Scenes with Instructions
- Neural Haircut: Prior-Guided Strand-Based Hair Reconstruction
- ScanNet++: A High-Fidelity Dataset of 3D Indoor Scenes
- EgoLoc: Revisiting 3D Object Localization from Egocentric Videos with Visual Queries
- Zip-NeRF: Anti-Aliased Grid-Based Neural Radiance Fields (pdf):Instant-NGP提出grid-based NeRF,对NeRF提速。Grid-based NeRF通常存在锯齿问题(alias),因此mip-NeRF 360提出将采样由射线变为圆锥,实现抗锯齿(Anti-aliasing)。但是,mip-NeRF 360不能很好的与Instant-NGP结合,因此本文提出了zip-NeRF。
- LERF: Language Embedded Radiance Fields (pdf) :LERF是DFF的后续工作,在DINO features的基础上,额外引入了CLIP features,帮助实现NeRF中的细粒度定位和分类。
Generative AI
- TexFusion: Synthesizing 3D Textures with Text-Guided Image Diffusion Models
- Generative Novel View Synthesis with 3D-Aware Diffusion Models
- VQ3D: Learning a 3D-Aware Generative Model on ImageNet
Poster Papers
3D Generation (Neural generative models)
- GRAM-HD: 3D-Consistent Image Generation at High Resolution with Generative Radiance Manifolds
- Generative Multiplane Neural Radiance for 3D-Aware Image Generation
- Get3DHuman: Lifting StyleGAN-Human into a 3D Generative Model Using Pixel-Aligned Reconstruction Priors
- Towards High-Fidelity Text-Guided 3D Face Generation and Manipulation Using only Images
- ATT3D: Amortized Text-to-3D Object Synthesis
- Fantasia3D: Disentangling Geometry and Appearance for High-quality Text-to-3D Content Creation
- GETAvatar: Generative Textured Meshes for Animatable Human Avatars
- Mimic3D: Thriving 3D-Aware GANs via 3D-to-2D Imitation
- DreamBooth3D: Subject-Driven Text-to-3D Generation
- 3D-aware Image Generation using 2D Diffusion Models
- Single-Stage Diffusion NeRF: A Unified Approach to 3D Generation and Reconstruction
3D from a single image and shape-from-x
- Accurate 3D Face Reconstruction with Facial Component Tokens
- HiFace: High-Fidelity 3D Face Reconstruction by Learning Static and Dynamic Details
- Zero-1-to-3: Zero-shot One Image to 3D Object
- Deformable Model-Driven Neural Rendering for High-Fidelity 3D Reconstruction of Human Heads Under Low-View Settings
3D Editing
- Vox-E: Text-Guided Voxel Editing of 3D Objects
- FaceCLIPNeRF: Text-driven 3D Face Manipulation using Deformable Neural Radiance Fields
- SKED: Sketch-guided Text-based 3D Editing
- Seal-3D: Interactive Pixel-Level Editing for Neural Radiance Fields
Face and gestures
- Speech4Mesh: Speech-Assisted Monocular 3D Facial Reconstruction for Speech-Driven 3D Facial Animation
- Imitator: Personalized Speech-driven 3D Facial Animation
- EmoTalk: Speech-Driven Emotional Disentanglement for 3D Face Animation
- SPACE: Speech-driven Portrait Animation with Controllable Expression
Stylization
- Diffusion in Style
- Creative Birds: Self-Supervised Single-View 3D Style Transfer
- StyleDomain: Efficient and Lightweight Parameterizations of StyleGAN for One-shot and Few-shot Domain Adaptation
- StylerDALLE: Language-Guided Style Transfer Using a Vector-Quantized Tokenizer of a Large-Scale Generative Model
- X-Mesh: Towards Fast and Accurate Text-driven 3D Stylization via Dynamic Textual Guidance
- Locally Stylized Neural Radiance Fields
- DS-Fusion: Artistic Typography via Discriminated and Stylized Diffusion
- Multi-Directional Subspace Editing in Style-Space
- StyleDiffusion: Controllable Disentangled Style Transfer via Diffusion Models
- All-to-Key Attention for Arbitrary Style Transfer
- DeformToon3D: Deformable Neural Radiance Fields for 3D Toonification
- Anti-DreamBooth: Protecting Users from Personalized Text-to-image Synthesis
- Neural Collage Transfer: Artistic Reconstruction via Material Manipulation
Dataset
- H3WB: Human3.6M 3D WholeBody Dataset and Benchmark
- SynBody: Synthetic Dataset with Layered Human Models for 3D Human Perception and Modeling
- Human-centric Scene Understanding for 3D Large-scale Scenario
相关文章:

[ICCV-23] Paper List - 3D Generation-related
ICCV-23 paper list 目录 Oral Papers 3D from multi-view and sensors Generative AI Poster Papers 3D Generation (Neural generative models) 3D from a single image and shape-from-x 3D Editing Face and gestures Stylization Dataset Oral Papers 3D from …...

Transformer为什么如此有效 | 通用建模能力,并行
目录 1 更强更通用的建模能力 2 并行计算 3 大规模训练数据 4 多训练技巧的集成 Transformer是一种基于自注意力机制的网络,在最近一两年年可谓是大放异彩,我23年入坑CV的时候,我看到的CV工作似乎还没有一个不用到Transformer里的一些组…...

【初识Jmeter】【接口自动化】
jmeter的使用笔记1 Jmeter介绍与下载安装介绍安装配置配置与扩展组件 jmeter的使用基本功能元素登陆请求与提取cookie其他请求接口关联Cookie-响应成功聚合报告查看 Jmeter介绍与下载安装 介绍 jmeter是apache公司基于java开发的一款开源压力测试工具,体积小&…...

C:数组传值调用和传地址调用
传地址调用 对数组进行修改:排序… #include <stdio.h>// 函数用于交换两个整数的值 void swap(int *a, int *b) {int temp *a;*a *b;*b temp; }// 函数用于对整数数组进行升序排序 void sortArray(int *arr, int size) {for (int i 0; i < size - 1…...

Python数据容器——字典的常用操作(增、删、改、查)
作者:Insist-- 个人主页:insist--个人主页 本文专栏:Python专栏 专栏介绍:本专栏为免费专栏,并且会持续更新python基础知识,欢迎各位订阅关注. 目录 一、理解字典 1. Python字典是什么? 2. 字…...

JavaScript入门——(5)函数
1、为什么需要函数 函数:function,是被设计为执行特定任务的代码块 说明:函数可以把具有相同或相似逻辑的代码“包裹”起来,通过函数调用执行这些被“包裹”的代码逻辑,有利于精简代码方便复用。 比如之前使用的ale…...

数据库sql查询成绩第二高
select * from propro; #查询成绩第二高 select max(id) from propro where id <(select max(id) from propro); #查询成绩第二高的第二种方式 select * from (select * from propro order by id desc limit 2) as b order by id asc limit 1;...

十五、异常(5)
本章概要 异常限制构造器 异常限制 当覆盖方法的时候,只能抛出在基类方法的异常说明里列出的那些异常。这个限制很有用,因为这意味着与基类一起工作的代码,也能和导出类一起正常工作(这是面向对象的基本概念)&#…...

途虎养车上市、京东养车“震虎”,如何突围汽车后市场?
“汽车后市场第一股”终于来了! 赶在十一黄金周之前,途虎养车股份有限公司(09690.HK,下称“途虎养车”)于9月26日挂牌港交所,开盘价为28港元/股,与发行价持平;IPO首日报收29.50港元/股,涨幅5.3…...

【算法与数据结构】--算法基础--算法入门
一、什么是算法? 算法是一组有序的操作步骤,用于解决特定问题或执行特定任务。它是一种精确而有限的计算过程,以输入数据作为起点,经过一系列明确定义的步骤,最终产生输出结果。算法可以看作是一种计算机程序的抽象&a…...

AnyDesk密钥
最近最新的密钥:7K2CV32ER6T8F8I 这款软件应该是目前用的最好的可以免费的软件了,记录一下密钥...

C#(Csharp)我的基础教程(二)(我的菜鸟教程笔记)-属性和字段的探究与学习
目录 1、字段字段特点:2、属性属性的特点 1、字段 字段是定义在方法外面的变量,是成员变量,主要是为了类的内部数据交换使用,字段一般是用private修饰,也可以用readonly修饰,表示只读字段,其它…...

Programming abstractions in C阅读笔记:p176-p178
《Programming Abstractions In C》学习第59天,p176-p178总结。 一、技术总结 1.addtive sequences tn tn-1 tn-2 序列:3, 7, 10, 17, 27, 44, 71, 115, 186, 301, 487, 788, 1275, … p177, As a general class, the sequences that follow this…...

LeetCode-496-下一个更大元素
题目描述: 题目链接:LeetCode-496-下一个更大元素 解题思路: 方法一:暴力 方法二:单调栈 方法一代码实现: class Solution {public int[] nextGreaterElement(int[] nums1, int[] nums2) {// 最笨的方法&am…...

C++中的Lambda表达式
一、为什么要有lambda表达式 struct Goods {string _name; // 名字double _price; // 价格int _evaluate; // 评价Goods(const char* str, double price, int evaluate):_name(str), _price(price), _evaluate(evaluate){} }; 对于一个Goods类,需要对其中3个成员分…...

dockerfile搭建lnmp
systemctl stop firewalld systemctl disable firewalld setenforce 0 docker network create --subnet172.18.0.0/16 --opt "com.docker.network.bridge.name""docker1" mynetwork #部署nginx(容器IP 为 172.18.0.10) mkdir /…...

python之数据库操作详解
一般来说,我们对数据库里的操作需要先连接,创建游标对象,然后通过游标对象执行SQL语句去对SQL的数据进行操作,本篇文章旨在记录与科普。 1.cursor相关 元组是不可变的数据类型,只能查询,不能修改…...

完成flex布局与float布局
一、flex布局 <style>.nav {display: flex;background-color: #f8f8f8; /* 导航栏背景颜色 */}.nav a {flex: 1;display: flex;align-items: center;justify-content: center;padding: 14px 16px;text-decoration: none;color: #555555; /* 导航栏文字颜色 */}.nav a:ho…...

ThinkPHP团购拼购商城源码/带分销团购商城网站源码/完美版
ThinkPHP团购拼购商城源码,带分销团购商城网站源码,很完美的一套基于ThinkPHP开发的团购分销商城源码,界面也很大气,站长亲测。有需要的可以借鉴一下。 下载地址:https://bbs.csdn.net/topics/613231434...

awvs 中低危漏洞
低危 X-Frame-Options Header未配置 查看请求头中是否存在X-Frame-Options Header字段 会话Cookie中缺少secure属性(未设置安全标志的Cookie) 当cookie设置为Secure标志时,它指示浏览器只能通过安全SSL/TLS通道访问cookie。 未设置HttpOnly标志的Cookie 当cookie设置…...

openGauss学习笔记-95 openGauss 数据库管理-访问外部数据库-postgres_fdw
文章目录 openGauss学习笔记-95 openGauss 数据库管理-访问外部数据库-postgres_fdw95.1 使用postgres_fdw95.2 postgres_fdw下推主要成分95.3 常见问题95.4 注意事项 openGauss学习笔记-95 openGauss 数据库管理-访问外部数据库-postgres_fdw openGauss的fdw实现的功能是各个…...

并不止于表面理论和简单示例——《Python数据科学项目实战》
Python 现在可以说是运用最广泛的编程语言之一,使用 Python 的人不只局限在计算机相关专业的从业者,很多来自金融领域、医疗领域以及其他我们无法想象的领域的人,每天都在使用 Python处理各种数据、使用机器学习进行预测以及完成各种有趣的工作。 长久以来ÿ…...

skywalking功能介绍
目标 前置:性能监控-微服务链路追踪skywalking搭建-CSDN博客 使用skywalking进行链路监控,找到应用的时间消耗再哪。 服务 服务信息 请求接口后查看skywalking,可以看到有一个请求,响应时间为1852ms,性能指数Apdex…...

c++桥接模式,中介者模式应用实现状态跳转
上图为例,按上述两种方式实现的模式跳转,如果在原先的三种模式之间再增加多一种模式,就会引起每个模式都会要求改变,并且逻辑混乱,因此更改模式为桥接中介者访问,将抽象和实现分离,实现之间采用…...

【SpringCloud】Ribbon负载均衡原理、负载均衡策略、饥饿加载
🐌个人主页: 🐌 叶落闲庭 💨我的专栏:💨 c语言 数据结构 javaEE 操作系统 Redis 石可破也,而不可夺坚;丹可磨也,而不可夺赤。 Ribbon 一、 Ribbon负载均衡原理1.1 负载均…...

亘古难题——前端开发or后端开发
一、引言 前端开发 前端开发是创建WEB页面或APP等前端界面呈现给用户的过程,通过HTML,CSS及JavaScript以及衍生出来的各种技术、框架、解决方案,来实现互联网产品的用户界面交互。 前端开发从网页制作演变而来,名称上有很明显的时…...

Notepad++提取含有特定字符串的行
ctrl M快捷键,进入"标记" 页面 标记所在行–循环查找-- 正则表达式 – 输入关键字 – 全部标记 – Copy Marked Text 关键字格式如下: .*关键字.*ctrl v,粘贴即可。...

host配置
配置host文件的作用主要是用于自定义域名与IP地址之间的映射关系。Host文件是一个操作系统用于将人类可读的域名(例如:www.example.com)映射到IP地址(例如:192.168.1.1)的文件。当你在浏览器中输入一个网址…...

```,```中间添加 # + 空格 + 空行后遇到的底部空行出错,书接上回,处理空行
【python查找替换:查找空行,空行前后添加,中间添加 # 空格 空行后遇到的第1行文字? - CSDN App】http://t.csdnimg.cn/QiKCV def is_blank(line):return len(line.strip()) 0txt 时间戳: ("%Y-%m-%d %H:%M:…...

Unity官方文档中关于内存管理的翻译(2021.3)
原文:Memory in Unity - Unity 手册 Unity内存管理 为了确保您的应用程序运行时没有性能问题,了解Unity如何使用和分配内存非常重要。本文档的这一部分解释了Unity中内存是如何工作的,适用于希望了解如何提高应用程序内存性能的读者。 Unity使用三个内…...