DIV
(DIV)
November 2, 2021, 1:55am
1
The Fast Marching (extra) effect in the Segment Editor module has a link to
http://www.spl.harvard.edu/publications/item/view/193
embedded as “The effect uses fast marching method ”, but the link seems to be dead.
Browsing
https://web.archive.org/web/20160731173233/http://www.spl.harvard.edu/publications/pages/display/?entriesPerPage=50&collection=1
I couldn’t figure out where it was supposed to link to.
—DIV
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 = '%'
pieper
(Steve Pieper (Isomics, Inc.))
November 2, 2021, 1:59pm
3
At this point it’s probably better to assume it’s not coming back and we should make other plans.
lassoan
(Andras Lasso)
November 2, 2021, 8:31pm
4
Could we upload all the papers in a github repository as release assets?
pieper
(Steve Pieper (Isomics, Inc.))
November 2, 2021, 9:54pm
5
I’m checking. I don’t know if the machine died with no backup or if it’s just not set up.
1 Like