Rohith Agaram, Shaurya Dewan, Rahul Sajnani, Adrien Poulenard, Madhava Krishna, Srinath Sridhar
[CVPR 2023] This is the official PyTorch implementation of CaFi-Net as proposed in the paper here.
teaser_grid.mov
Coordinate-based implicit neural networks, or neural fields, have emerged as useful representations of shape and appearance in 3D computer vision. Despite advances, however, it remains challenging to build neural fields for categories of objects without datasets like ShapeNet that provide "canonicalized" object instances that are consistently aligned for their 3D position and orientation (pose). We present Canonical Field Network (CaFi-Net), a self-supervised method to canonicalize the 3D pose of instances from an object category represented as neural fields, specifically neural radiance fields (NeRFs). CaFi-Net directly learns from continuous and noisy radiance fields using a Siamese network architecture that is designed to extract equivariant field features for category-level canonicalization. During inference, our method takes pre-trained neural radiance fields of novel object instances at arbitrary 3D pose and estimates a canonical field with consistent 3D pose across the entire category. Extensive experiments on a new dataset of 1300 NeRF models across 13 object categories show that our method matches or exceeds the performance of 3D point cloud-based methods.
Download the 1300 NeRF density fields dataset here.
# Create base dataset directory
mkdir dataset
# Create directory for density fields dataset
mkdir dataset/nerf_fields
# Change directory
cd dataset/nerf_fields
Please find the PyTorch implementation of the NeRF codebase used for the generation of the dataset of 1300 NeRF density fields in the "nerf" folder. Instructions are provided in the README in the same folder.
Please find the PyTorch implementation of CaFi-Net and its instructions in the cafi_net folder. This implementation is still under development.
@InProceedings{agaram2023_cafinet,
author={Rohith Agaram and
Shaurya Dewan and
Rahul Sajnani and
Adrien Poulenard and
Madhava Krishna and
Srinath Sridhar},
title={Canonical Fields: Self-Supervised Learning of Pose-Canonicalized Neural Fields},
booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June}
year={2023}}
we thank ConDor for providing the base code for building the cafi-net. The NeRF model is implemented based on NeRF-pytorch.