View Issue Details

IDProjectCategoryView StatusLast Update
0004319Slicer4Module Annotationspublic2018-06-01 11:19
Reporterfepegar Assigned Tonicole  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
PlatformLinuxOSUbuntuOS Version14.04
Product VersionSlicer 4.6.1 
Target VersionFixed in Version 
Summary0004319: Problems loading acsv ROI files
Description

I can load ROI files using the GUI only if the start by R.

If they don't, they are loaded as vtkMRMLAnnotationFiducialNodes. If I use the function loadAnnotationFiducial() from slicer.util, I also get a vtkMRMLAnnotationFiducialNode instead of the expected vtkMRMLAnnotationROINode.

Steps To Reproduce
  • Create a ROI using the GUI and save it with the default name R.acsv
  • Make a copy of this file and name it r.acsv
  • Drag & drop both files: only R.acsv gets correctly loaded.
TagsNo tags attached.

Activities

nicole

nicole

2016-12-20 12:39

administrator   ~0014278

Annotations rely on a file naming convention to determine if the file contains a ruler or an ROI.
If you click on File, Add Data and chose r.acsv to load, you can click on Show Options and a set of radio buttons will let you specify that the file to load is an ROI.
From python, the utility class is missing a loadAnnotationROI method, I'll add this to it today but you can copy and paste and use it now if you wish:

def loadAnnotationROI(filename, returnNode=False):
filetype = 'AnnotationFile'
properties = {}
properties['roi'] = 1
return loadNodeFromFile(filename, filetype, properties, returnNode)

loadAnnotationROI('r.acsv')

nicole

nicole

2016-12-20 12:52

administrator   ~0014279

Pull request: https://github.com/Slicer/Slicer/pull/641

nicole

nicole

2016-12-20 15:33

administrator   ~0014280

Python utility methods commited to Slicer:
http://viewvc.slicer.org/viewvc.cgi/Slicer4?view=revision&revision=25614

fepegar

fepegar

2016-12-22 08:56

reporter   ~0014281

Thanks Nicole!

Related Changesets

Import 2017-06-07 23:51:09: master 74c9c6b1

2016-12-20 15:17:43

naucoin

Details Diff
ENH: Add missing python load utility methods

The python utility file was missing methods to load Annotation
rulers and ROIs, this change adds:
loadAnnotationRuler('ruler.acsv')
loadAnnotationROI('box.acsv')

Issue 0004319

git-svn-id: http://svn.slicer.org/Slicer4/trunk@25614 3bd1e089-480b-0410-8dfb-8563597acbee
mod - Base/Python/slicer/util.py Diff File

Issue History

Date Modified Username Field Change
2016-12-20 05:47 fepegar New Issue
2016-12-20 05:47 fepegar Status new => assigned
2016-12-20 05:47 fepegar Assigned To => nicole
2016-12-20 12:39 nicole Note Added: 0014278
2016-12-20 12:52 nicole Note Added: 0014279
2016-12-20 15:33 nicole Note Added: 0014280
2016-12-20 15:33 nicole Status assigned => resolved
2016-12-20 15:33 nicole Resolution open => fixed
2016-12-22 08:56 fepegar Note Added: 0014281
2017-06-10 08:51 Changeset attached => Slicer master 74c9c6b1
2018-06-01 11:19 fepegar Status resolved => closed