Commit
·
9efc262
1
Parent(s):
b8ec8dd
Update resolution parameter in generate3d function for higher output quality
Browse files- Increased the resolution from [1024, 1024] to [2056, 2056] to enhance the detail and quality of the generated 3D output.
- inference.py +1 -1
inference.py
CHANGED
@@ -56,7 +56,7 @@ def generate3d(model, rgb, ccm, device):
|
|
56 |
|
57 |
with torch.no_grad():
|
58 |
data_config = {
|
59 |
-
'resolution': [
|
60 |
"triview_color": triplane_color.to(device),
|
61 |
}
|
62 |
|
|
|
56 |
|
57 |
with torch.no_grad():
|
58 |
data_config = {
|
59 |
+
'resolution': [2056, 2056],
|
60 |
"triview_color": triplane_color.to(device),
|
61 |
}
|
62 |
|