Skip to content

Commit

Permalink
Merge pull request #67 from ofgulban/devel
Browse files Browse the repository at this point in the history
Minor update
  • Loading branch information
ofgulban authored Feb 9, 2018
2 parents acbc9da + ee8f8db commit b00f132
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions segmentator/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Entry point.
Mostly following this example:
Expand Down
1 change: 1 addition & 0 deletions segmentator/gui_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Functions covering the user interaction with the GUI."""

# Part of the Segmentator library
Expand Down
1 change: 1 addition & 0 deletions segmentator/hist2d_counts.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Save 2D histogram image without displaying GUI."""

# Part of the Segmentator library
Expand Down
1 change: 1 addition & 0 deletions segmentator/ncut_prepare.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Normalized graph cuts for segmentator (experimental).
TODO: Replacing the functionality using scikit-learn?
Expand Down
3 changes: 3 additions & 0 deletions segmentator/segmentator_main.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Processing input and plotting."""

# Part of the Segmentator library
Expand All @@ -20,6 +21,8 @@
from __future__ import division
import numpy as np
import config as cfg
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
from matplotlib.colors import LogNorm
from matplotlib.widgets import Slider, Button, LassoSelector
Expand Down
3 changes: 3 additions & 0 deletions segmentator/segmentator_ncut.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Processing input and plotting, for experimental ncut feature.
Lots of code repetition, will be integrated better in the future.
Expand All @@ -23,6 +24,8 @@
from __future__ import division
import numpy as np
import config as cfg
import matplotlib
matplotlib.use('TkAgg')
import matplotlib.pyplot as plt
from matplotlib.colors import LogNorm, ListedColormap, BoundaryNorm
from matplotlib.widgets import Slider, Button, RadioButtons
Expand Down
1 change: 1 addition & 0 deletions segmentator/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env python
"""Some utility functions."""

# Part of the Segmentator library
Expand Down

0 comments on commit b00f132

Please sign in to comment.