kambris commited on
Commit
4cc7b44
·
verified ·
1 Parent(s): dd6f5e9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 15%)
189
- skip_top = int(img_height * 0.15)
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