mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-08-02 11:52:50 +08:00
Summary: Adding BlenderCamera (for rendering with R2N2 Blender transformations in the next diff). Reviewed By: nikhilaravi Differential Revision: D22462515 fbshipit-source-id: 4b40ee9bba8b6d56788dd3c723036ec704668153
9 lines
255 B
Python
9 lines
255 B
Python
# Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
|
|
from .r2n2 import R2N2, BlenderCamera
|
|
from .shapenet import ShapeNetCore
|
|
from .utils import collate_batched_meshes
|
|
|
|
|
|
__all__ = [k for k in globals().keys() if not k.startswith("_")]
|