Martin Tomov commited on
Commit
312614a
·
verified ·
1 Parent(s): 52d743b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -151,7 +151,11 @@ def extract_and_paste_insect(original_image: np.ndarray, detection: DetectionRes
151
  background[y_offset:y_end, x_offset:x_end] = insect
152
 
153
  def create_yellow_background_with_insects(image: np.ndarray, detections: List[DetectionResult]) -> np.ndarray:
154
- yellow_background = np.full((image.shape[0], image.shape[1], 3), (0, 255, 255), dtype=np.uint8) # BGR for yellow
 
 
 
 
155
  for detection in detections:
156
  if detection.mask is not None:
157
  extract_and_paste_insect(image, detection, yellow_background)
 
151
  background[y_offset:y_end, x_offset:x_end] = insect
152
 
153
  def create_yellow_background_with_insects(image: np.ndarray, detections: List[DetectionResult]) -> np.ndarray:
154
+ # Create a yellow background in RGB
155
+ yellow_background = np.full((image.shape[0], image.shape[1], 3), (255, 255, 0), dtype=np.uint8)
156
+ # Convert the yellow background from RGB to BGR for OpenCV
157
+ yellow_background = cv2.cvtColor(yellow_background, cv2.COLOR_RGB2BGR)
158
+
159
  for detection in detections:
160
  if detection.mask is not None:
161
  extract_and_paste_insect(image, detection, yellow_background)