Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -185,8 +185,8 @@ def debug_voynich_detection(img_pil):
|
|
| 185 |
|
| 186 |
img_height, img_width = gray.shape
|
| 187 |
|
| 188 |
-
# Show the search area (skip top
|
| 189 |
-
skip_top = int(img_height * 0.
|
| 190 |
search_area = gray[skip_top:, :]
|
| 191 |
|
| 192 |
# Create a visualization showing the search area
|
|
|
|
| 185 |
|
| 186 |
img_height, img_width = gray.shape
|
| 187 |
|
| 188 |
+
# Show the search area (skip top 5%)
|
| 189 |
+
skip_top = int(img_height * 0.05)
|
| 190 |
search_area = gray[skip_top:, :]
|
| 191 |
|
| 192 |
# Create a visualization showing the search area
|