Skip to content

Commit

Permalink
Update label image parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronBodine committed Dec 28, 2022
1 parent 4b6c7f9 commit 30d3478
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
wcp = True #Export tiles with water column present
wcr = True #Export Tiles with water column removed (and slant range corrected)

lbl_set = True # Export images for labeling
lbl_set = 0 # Export images for labeling: 0==False; 1==True, keep water column & shadows; 2==True, remove water column & shadows
spdCor = 1 # Speed correction: 0==No Speed Correction; 1==Stretch by GPS distance; !=1 or !=0 == Stretch factor.
maxCrop = True # True==Ping-wise crop; False==Crop tile to max range.

Expand Down
4 changes: 2 additions & 2 deletions main_batchDirectory.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
wcp = True #Export tiles with water column present
wcr = True #Export Tiles with water column removed (and slant range corrected)

lbl_set = True # Export images for labeling
lbl_set = 0 # Export images for labeling: 0==False; 1==True, keep water column & shadows; 2==True, remove water column & shadows
spdCor = 1 # Speed correction: 0==No Speed Correction; 1==Stretch by GPS distance; !=1 or !=0 == Stretch factor.
maxCrop = True # True==Ping-wise crop; False==Crop tile to max range.

Expand Down Expand Up @@ -151,4 +151,4 @@
print('Could not process:', datFile)

gc.collect()
print("\n\nTotal Processing Time: ",datetime.timedelta(seconds = round(time.time() - start_time, ndigits=0)))
print("\n\nTotal Processing Time: ",datetime.timedelta(seconds = round(time.time() - start_time, ndigits=0)))
2 changes: 1 addition & 1 deletion test_PINGMapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
wcp = True #Export tiles with water column present
wcr = True #Export Tiles with water column removed (and slant range corrected)

lbl_set = True # Export images for labeling
lbl_set = 2 # Export images for labeling: 0==False; 1==True, keep water column & shadows; 2==True, remove water column & shadows
spdCor = 1 # Speed correction: 0==No Speed Correction; 1==Stretch by GPS distance; !=1 or !=0 == Stretch factor.
maxCrop = True # True==Ping-wise crop; False==Crop tile to max range.

Expand Down

0 comments on commit 30d3478

Please sign in to comment.