reab5555 commited on
Commit
01b0a0e
·
verified ·
1 Parent(s): 605c9e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +39 -38
app.py CHANGED
@@ -266,44 +266,45 @@ def process_image_detection(image, target_label, surprise_rating):
266
  )
267
 
268
  plt.axis('off')
269
-
270
- print("Saving final image...")
271
- try:
272
- # Force figure to be rendered
273
- fig.canvas.draw()
274
-
275
- # Get the RGBA buffer from the figure
276
- w, h = fig.canvas.get_width_height()
277
- buf = np.frombuffer(fig.canvas.tostring_rgb(), dtype=np.uint8)
278
- buf.shape = (h, w, 3)
279
-
280
- # Create PIL Image from buffer
281
- output_image = Image.fromarray(buf)
282
-
283
- # Resize to original size if needed
284
- if output_image.size != original_size:
285
- output_image = output_image.resize(original_size, Image.Resampling.LANCZOS)
286
-
287
- # Save to final buffer
288
- final_buf = io.BytesIO()
289
- output_image.save(final_buf, format='PNG', dpi=original_dpi)
290
- final_buf.seek(0)
291
-
292
- # Cleanup
293
- plt.close(fig)
294
-
295
- return final_buf
296
-
297
- except Exception as e:
298
- print(f"Save error details: {str(e)}")
299
- print(f"Figure type: {type(fig)}")
300
- print(f"Canvas type: {type(fig.canvas)}")
301
- raise
302
-
303
- except Exception as e:
304
- print(f"Process image detection error: {str(e)}")
305
- print(f"Error occurred at line {e.__traceback__.tb_lineno}")
306
- raise
 
307
 
308
  def process_and_analyze(image):
309
  if image is None:
 
266
  )
267
 
268
  plt.axis('off')
269
+
270
+ print("Saving final image...")
271
+ try:
272
+ # Save directly to buffer using savefig
273
+ buf = io.BytesIO()
274
+ fig.savefig(buf,
275
+ format='png',
276
+ dpi=dpi,
277
+ bbox_inches='tight',
278
+ pad_inches=0)
279
+ buf.seek(0)
280
+
281
+ # Open as PIL Image
282
+ output_image = Image.open(buf)
283
+
284
+ # Convert to RGB if needed
285
+ if output_image.mode != 'RGB':
286
+ output_image = output_image.convert('RGB')
287
+
288
+ # Resize to original size if needed
289
+ if output_image.size != original_size:
290
+ output_image = output_image.resize(original_size, Image.Resampling.LANCZOS)
291
+
292
+ # Save to final buffer
293
+ final_buf = io.BytesIO()
294
+ output_image.save(final_buf, format='PNG', dpi=original_dpi)
295
+ final_buf.seek(0)
296
+
297
+ # Cleanup
298
+ plt.close(fig)
299
+ buf.close()
300
+
301
+ return final_buf
302
+
303
+ except Exception as e:
304
+ print(f"Save error details: {str(e)}")
305
+ print(f"Figure type: {type(fig)}")
306
+ print(f"Canvas type: {type(fig.canvas)}")
307
+ raise
308
 
309
  def process_and_analyze(image):
310
  if image is None: