LPX commited on
Commit
322ab55
·
1 Parent(s): 237292f

🐛 fix(image processing): ensure image consistency for gradient and minmax preprocessors

Browse files

- added type check for PIL Image and conversion to NumPy array in min_max preprocessing
- 【Refactor】also converted PIL Image to NumPy array in image prediction module

💄 style(image processing): optimize ELA image list

- removed ela_img_4 as it did not add significant insights and kept the uncommented portion orderly

Files changed (2) hide show
  1. app.py +5 -5
  2. utils/minmax.py +2 -1
app.py CHANGED
@@ -231,17 +231,17 @@ def predict_image_with_html(img, confidence_threshold, augment_methods, rotate_d
231
  else:
232
  img_pil = img
233
  img_pil, results = predict_image(img_pil, confidence_threshold)
234
-
235
- gradient_image = gradient_processing(img_pil) # Added gradient processing
236
- minmax_image = minmax_preprocess(img_pil) # Added MinMax processing
 
237
 
238
  # Generate ELA images with different presets
239
  ela_img_1 = ELA(img_pil, scale=100, alpha=0.66)
240
  ela_img_2 = ELA(img_pil, scale=75, alpha=0.8)
241
  ela_img_3 = ELA(img_pil, scale=50, alpha=0.5)
242
- ela_img_4 = ELA(img_pil, scale=25, alpha=0.85)
243
 
244
- ela_images = [ela_img_1, ela_img_2, ela_img_3, ela_img_4, gradient_image, minmax_image]
245
 
246
  html_content = generate_results_html(results)
247
  return img_pil, ela_images, html_content
 
231
  else:
232
  img_pil = img
233
  img_pil, results = predict_image(img_pil, confidence_threshold)
234
+ img_np = np.array(img_pil) # Convert PIL Image to NumPy array
235
+
236
+ gradient_image = gradient_processing(img_np) # Added gradient processing
237
+ minmax_image = minmax_preprocess(img_np) # Added MinMax processing
238
 
239
  # Generate ELA images with different presets
240
  ela_img_1 = ELA(img_pil, scale=100, alpha=0.66)
241
  ela_img_2 = ELA(img_pil, scale=75, alpha=0.8)
242
  ela_img_3 = ELA(img_pil, scale=50, alpha=0.5)
 
243
 
244
+ ela_images = [ela_img_1, ela_img_2, ela_img_3, gradient_image, minmax_image]
245
 
246
  html_content = generate_results_html(results)
247
  return img_pil, ela_images, html_content
utils/minmax.py CHANGED
@@ -27,8 +27,9 @@ def blk_filter(img, radius):
27
  )
28
  return cv.normalize(result, None, 0, 127, cv.NORM_MINMAX, cv.CV_8UC1)
29
 
30
-
31
  def preprocess(image, channel=0, radius=0):
 
 
32
  if channel == 0:
33
  img = cv.cvtColor(image, cv.COLOR_BGR2GRAY)
34
  elif channel == 4:
 
27
  )
28
  return cv.normalize(result, None, 0, 127, cv.NORM_MINMAX, cv.CV_8UC1)
29
 
 
30
  def preprocess(image, channel=0, radius=0):
31
+ if not isinstance(image, np.ndarray):
32
+ image = np.array(image) # Ensure image is a NumPy array
33
  if channel == 0:
34
  img = cv.cvtColor(image, cv.COLOR_BGR2GRAY)
35
  elif channel == 4: