I heard we’re still stuck waiting for physical presence on site before the publication server can come back.
I think google scholar would be a good option.
@pieper Is the publication server at spl going to come online again? If not, I suppose we replace all links to it including those that might be in Slicer extensions.
Dead link in question is located at:
def icon(self):
# It should not be necessary to modify this method
iconPath = os.path.join(os.path.dirname(__file__), 'SegmentEditorEffect.png')
if os.path.exists(iconPath):
return qt.QIcon(iconPath)
return qt.QIcon()
def helpText(self):
return """<html>Expand the selected segment<br> to regions that have similar intensity.<p>
Only the selected segment is expanded. No background segment is needed.
The effect uses <a href="http://www.spl.harvard.edu/publications/item/view/193">fast marching method</a>.
<p></html>"""
def setupOptionsFrame(self):
self.percentMax = ctk.ctkSliderWidget()
self.percentMax.minimum = 0
self.percentMax.maximum = 100
self.percentMax.singleStep = 1
self.percentMax.value = 10
self.percentMax.suffix = '%'