Skip to content

Commit

Permalink
remove some semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoube committed Jul 18, 2022
1 parent 03f0bcf commit 14d8f15
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions jython/minimal_examples/Thickness.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@
imp.show()

#instantiate local thickness and set its options
localThickness = LocalThicknessWrapper();
localThickness.setSilence(True);
localThickness.setShowOptions(False);
localThickness.maskThicknessMap = True;
localThickness.calibratePixels = True;
localThickness = LocalThicknessWrapper()
localThickness.setSilence(True)
localThickness.setShowOptions(False)
localThickness.maskThicknessMap = True
localThickness.calibratePixels = True

#run local thickness. mapImp is the thickness map as an ImageJ1 ImagePlus
mapImp = localThickness.processImage(imp)
Expand All @@ -34,7 +34,7 @@

#calculate some summary statistics on the map
#see also https://imagej.nih.gov/ij/developer/api/ij/ij/process/StackStatistics.html
resultStats = StackStatistics(mapImp);
resultStats = StackStatistics(mapImp)
print(resultStats)

#save the map
Expand Down

0 comments on commit 14d8f15

Please sign in to comment.