Andre commited on
Commit
20e4fec
·
1 Parent(s): ef35d03

“Update”

Browse files
Files changed (1) hide show
  1. src/img_gen_colab.py +17 -0
src/img_gen_colab.py CHANGED
@@ -74,3 +74,20 @@ def generate_image(prompt, team_color, model_name, height, width, num_inference_
74
  except Exception as e:
75
  return f"An error occurred: {e}"
76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  except Exception as e:
75
  return f"An error occurred: {e}"
76
 
77
+ def save_image(image, model_label, seed, prompt_label, team):
78
+ """
79
+ Save the generated image with a timestamped filename.
80
+
81
+ Args:
82
+ image (PIL.Image.Image): The generated image.
83
+ model_label (str): The label of the selected model.
84
+ prompt_label (str): The seed. The label of the selected prompt.
85
+ team (str): The selected team ("Red" or "Blue").
86
+
87
+ Returns:
88
+ str: The filename of the saved image.
89
+ """
90
+ timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
91
+ output_filename = f"{timestamp}_{model_label.replace(' ', '_').lower()}_{seed}_{prompt_label.replace(' ', '_').lower()}_{team.lower()}.png"
92
+ image.save(output_filename)
93
+ return output_filename