Update params
Browse files- src/app_cached_videos.py +2 -2
src/app_cached_videos.py
CHANGED
@@ -31,7 +31,7 @@ def get_token_number(prompt, word):
|
|
31 |
return all_tokens.index(word_tokens[1]) # Word_tokens start with cls
|
32 |
|
33 |
def overlay_mask(img, mask):
|
34 |
-
mask_resized = cv2.resize(mask, (img.shape[1], img.shape[0]), interpolation=cv2.
|
35 |
|
36 |
# Create a 3-channel version of the mask
|
37 |
mask_3ch = cv2.cvtColor(mask_resized, cv2.COLOR_GRAY2BGR)
|
@@ -44,7 +44,7 @@ def overlay_mask(img, mask):
|
|
44 |
alpha_channel[mask_resized < 5] = 0
|
45 |
|
46 |
# Set the opacity level for non-black pixels
|
47 |
-
opacity = 0.
|
48 |
alpha_channel[mask_resized != 0] = int(255 * opacity)
|
49 |
|
50 |
# Create a 4-channel image (BGR + Alpha)
|
|
|
31 |
return all_tokens.index(word_tokens[1]) # Word_tokens start with cls
|
32 |
|
33 |
def overlay_mask(img, mask):
|
34 |
+
mask_resized = cv2.resize(mask, (img.shape[1], img.shape[0]), interpolation=cv2.INTER_NEAREST)
|
35 |
|
36 |
# Create a 3-channel version of the mask
|
37 |
mask_3ch = cv2.cvtColor(mask_resized, cv2.COLOR_GRAY2BGR)
|
|
|
44 |
alpha_channel[mask_resized < 5] = 0
|
45 |
|
46 |
# Set the opacity level for non-black pixels
|
47 |
+
opacity = 0.3 # Adjust this value as needed (0.0 to 1.0)
|
48 |
alpha_channel[mask_resized != 0] = int(255 * opacity)
|
49 |
|
50 |
# Create a 4-channel image (BGR + Alpha)
|