Update app.py
Browse files
app.py
CHANGED
@@ -34,10 +34,18 @@ def run_inference(prompt, stable_diffusion_model, num_inference_steps, guidance_
|
|
34 |
|
35 |
# view it also as 3d model or not output
|
36 |
if model_3d:
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
else:
|
39 |
-
|
40 |
-
|
|
|
|
|
|
|
|
|
41 |
|
42 |
# Define Gradio UI components
|
43 |
prompt = gr.Textbox(label="Your Prompt", info="What the Minecraft Skin should look like")
|
|
|
34 |
|
35 |
# view it also as 3d model or not output
|
36 |
if model_3d:
|
37 |
+
image_path = os.path.join(f"output_minecraft_skins/{filename}")
|
38 |
+
image = Image.open(image_path)
|
39 |
+
image = image.resize((64, 64), resample=Image.NEAREST) # Use nearest neighbor interpolation
|
40 |
+
image.save(image_path)
|
41 |
+
return image_path, os.path.join(f"output_minecraft_skins/{filename}_3d_model.glb")
|
42 |
else:
|
43 |
+
image_path = os.path.join(f"output_minecraft_skins/{filename}")
|
44 |
+
image = Image.open(image_path)
|
45 |
+
image = image.resize((64, 64), resample=Image.NEAREST) # Use nearest neighbor interpolation
|
46 |
+
image.save(image_path)
|
47 |
+
return image_path, None
|
48 |
+
|
49 |
|
50 |
# Define Gradio UI components
|
51 |
prompt = gr.Textbox(label="Your Prompt", info="What the Minecraft Skin should look like")
|