Martin Tomov commited on
Commit
5fc1e3f
·
verified ·
1 Parent(s): 8c2733a

Ensure the insect retains its original color

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -138,11 +138,13 @@ def extract_and_paste_insect(original_image: np.ndarray, detection: DetectionRes
138
 
139
  insect = cv2.bitwise_and(insect_crop, insect_crop, mask=mask_crop)
140
 
141
- x_offset, y_offset = xmin, ymin
142
- x_end, y_end = x_offset + insect.shape[1], y_offset + insect.shape[0]
 
 
143
 
144
- insect_area = background[y_offset:y_end, x_offset:x_end]
145
- insect_area[mask_crop == 1] = insect[mask_crop == 1]
146
 
147
  def create_yellow_background_with_insects(image: np.ndarray, detections: List[DetectionResult]) -> np.ndarray:
148
  yellow_background = np.full((image.shape[0], image.shape[1], 3), (0, 255, 255), dtype=np.uint8) # BGR for yellow
 
138
 
139
  insect = cv2.bitwise_and(insect_crop, insect_crop, mask=mask_crop)
140
 
141
+ # Ensure the insect retains its original color
142
+ color_insect = cv2.bitwise_and(insect_crop, insect_crop, mask=mask_crop)
143
+ non_mask_area = cv2.bitwise_and(background[ymin:ymax, xmin:xmax], background[ymin:ymax, xmin:xmax], mask=cv2.bitwise_not(mask_crop))
144
+ combined = cv2.add(non_mask_area, color_insect)
145
 
146
+ x_offset, y_offset = xmin, ymin
147
+ background[y_offset:y_offset + combined.shape[0], x_offset:x_offset + combined.shape[1]] = combined
148
 
149
  def create_yellow_background_with_insects(image: np.ndarray, detections: List[DetectionResult]) -> np.ndarray:
150
  yellow_background = np.full((image.shape[0], image.shape[1], 3), (0, 255, 255), dtype=np.uint8) # BGR for yellow