vishnu23 commited on
Commit
c31846b
·
1 Parent(s): d8c482e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -19
app.py CHANGED
@@ -8,6 +8,7 @@ import leafmap
8
  from samgeo import SamGeo, show_image, download_file, overlay_images, tms_to_geotiff
9
  from zipfile import ZipFile
10
 
 
11
  #initialize the model
12
  sam = SamGeo(
13
  model_type="vit_h",
@@ -15,19 +16,6 @@ sam = SamGeo(
15
  sam_kwargs=None,
16
  )
17
 
18
- #mkdir for app
19
- storage='app_store'
20
- if os.path.exists(storage):
21
- pass
22
- else:
23
- os.mkdir(storage)
24
-
25
- zip_folder=f'{storage}/zip_folder'
26
- if os.path.exists(zip_folder):
27
- pass
28
- else:
29
- os.mkdir(zip_folder)
30
-
31
  def get_all_file_paths(directory):
32
 
33
  # initializing empty file paths list
@@ -45,15 +33,30 @@ def get_all_file_paths(directory):
45
 
46
  def get_shape_files(image):
47
  filename, file_extension = os.path.splitext(image.name)
48
- if file_extension=='tif':
49
- out_file=f'{storage}/{image.name}'
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  if os.path.exists(out_file):
51
  pass
52
  else:
53
  os.mkdir(out_file)
54
 
55
- sam.generate(image.name, output="masks.tif", foreground=True, unique=True)
56
- sam.tiff_to_vector("masks.tif", out_file)
 
57
 
58
  # writing files to a zipfile
59
  file_paths=get_all_file_paths(out_file)
@@ -61,14 +64,14 @@ def get_shape_files(image):
61
  # for file_name in file_paths:
62
  # print(file_name)
63
 
64
- with ZipFile(f'{zip_folder}/{image.name}.zip','w') as zip:
65
  # writing each file one by one
66
  for file in file_paths:
67
  zip.write(file)
68
 
69
  print('All files zipped successfully!')
70
 
71
- return f'{zip_folder}/{image.name}.zip'
72
  # get_shape_files(image)
73
  else:
74
  return "Try uploading .tif file for processing!."
 
8
  from samgeo import SamGeo, show_image, download_file, overlay_images, tms_to_geotiff
9
  from zipfile import ZipFile
10
 
11
+
12
  #initialize the model
13
  sam = SamGeo(
14
  model_type="vit_h",
 
16
  sam_kwargs=None,
17
  )
18
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  def get_all_file_paths(directory):
20
 
21
  # initializing empty file paths list
 
33
 
34
  def get_shape_files(image):
35
  filename, file_extension = os.path.splitext(image.name)
36
+ print(filename,file_extension)
37
+ if file_extension=='.tif':
38
+ #mkdir for app
39
+ storage='app_store'
40
+ if os.path.exists(storage):
41
+ pass
42
+ else:
43
+ os.mkdir(storage)
44
+
45
+ zip_folder=f'{storage}/zip_folder'
46
+ if os.path.exists(zip_folder):
47
+ pass
48
+ else:
49
+ os.mkdir(zip_folder)
50
+
51
+ out_file=f'{storage}/out_files'
52
  if os.path.exists(out_file):
53
  pass
54
  else:
55
  os.mkdir(out_file)
56
 
57
+ # load_model()
58
+ sam.generate(image.name, output=f"{out_file}/masks.tif", foreground=True, unique=True)
59
+ sam.tiff_to_vector(f"{out_file}/masks.tif", out_file)
60
 
61
  # writing files to a zipfile
62
  file_paths=get_all_file_paths(out_file)
 
64
  # for file_name in file_paths:
65
  # print(file_name)
66
 
67
+ with ZipFile(f'{zip_folder}/shapefile.zip','w') as zip:
68
  # writing each file one by one
69
  for file in file_paths:
70
  zip.write(file)
71
 
72
  print('All files zipped successfully!')
73
 
74
+ return f'{zip_folder}/shapefile.zip'
75
  # get_shape_files(image)
76
  else:
77
  return "Try uploading .tif file for processing!."