Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

normalize UV coordinates to [0,1] in make_material_atlas() #1270

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
change default option for texture_wrap
Colin97 committed Jul 27, 2022
commit 8984feb4aab597fbe659bc18c0143aba72494f14
2 changes: 1 addition & 1 deletion pytorch3d/io/obj_io.py
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ def load_obj(
load_textures: bool = True,
create_texture_atlas: bool = False,
texture_atlas_size: int = 4,
texture_wrap: Optional[str] = "repeat",
texture_wrap: Optional[str] = None,
device: Device = "cpu",
path_manager: Optional[PathManager] = None,
):