mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 03:42:50 +08:00
Summary: Return R2N2's voxel coordinates. Reviewed By: nikhilaravi Differential Revision: D22462530 fbshipit-source-id: a995cfa0957b2561eb3b0f4591cb1db42170bc68
8 lines
242 B
Python
8 lines
242 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from .r2n2 import R2N2
|
|
from .utils import BlenderCamera, collate_batched_R2N2, render_cubified_voxels
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|