ardavey commited on
Commit
3c0f272
·
verified ·
1 Parent(s): caae7d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -47,12 +47,16 @@ with col1:
47
  # Text input for prompt
48
  input_text = st.text_input("Enter your prompt:", "Identify the skin condition?")
49
 
50
-
51
  with col2:
52
  # Display uploaded image (if any)
53
  if uploaded_file:
54
  input_image = Image.open(uploaded_file).convert("RGB")
55
- st.image(input_image, caption="Uploaded Image", use_container_width=True)
 
 
 
 
 
56
 
57
  # Process and display the result when the button is clicked
58
  if uploaded_file and st.button("Analyze"):
@@ -60,7 +64,7 @@ with col2:
60
  st.error("Please provide a valid prompt!")
61
  else:
62
  try:
63
- # Resize image for efficiency
64
  max_size = (512, 512)
65
  input_image = input_image.resize(max_size)
66
 
 
47
  # Text input for prompt
48
  input_text = st.text_input("Enter your prompt:", "Identify the skin condition?")
49
 
 
50
  with col2:
51
  # Display uploaded image (if any)
52
  if uploaded_file:
53
  input_image = Image.open(uploaded_file).convert("RGB")
54
+
55
+ # Resize image for display (300x300 pixels)
56
+ resized_image = input_image.resize((300, 300))
57
+
58
+ # Display the resized image
59
+ st.image(resized_image, caption="Uploaded Image (300x300)", use_container_width=True)
60
 
61
  # Process and display the result when the button is clicked
62
  if uploaded_file and st.button("Analyze"):
 
64
  st.error("Please provide a valid prompt!")
65
  else:
66
  try:
67
+ # Resize image for processing (512x512 pixels)
68
  max_size = (512, 512)
69
  input_image = input_image.resize(max_size)
70