HarryEslick commited on
Commit
96e63d2
·
1 Parent(s): 2f04000

example_imgs

Browse files
Files changed (1) hide show
  1. app.py +1 -4
app.py CHANGED
@@ -52,10 +52,7 @@ model_path = get_asset_path(Path("models/best.onnx"))
52
 
53
  data_dir=get_asset_path(Path("img"))
54
  data_dir.exists()
55
-
56
- train_images = list(data_dir.glob('shells.png'))
57
-
58
- default_images = {Path(img).stem: str(img) for img in train_images}
59
 
60
  class PointSelector:
61
  def __init__(self, image=None):
 
52
 
53
  data_dir=get_asset_path(Path("img"))
54
  data_dir.exists()
55
+ example_imgs = data_dir.glob("*.jpg")
 
 
 
56
 
57
  class PointSelector:
58
  def __init__(self, image=None):