Difference between revisions of "Developer Meetings/20130702"
From Slicer Wiki
Line 13: | Line 13: | ||
** Sorry I won't make the hangout. Viewing individual pixels is generally useful for technical work, such as medical physics. It is a common feature in commercial programs, and we eventually will want in Slicer, but not terribly urgent. -Greg | ** Sorry I won't make the hangout. Viewing individual pixels is generally useful for technical work, such as medical physics. It is a common feature in commercial programs, and we eventually will want in Slicer, but not terribly urgent. -Greg | ||
** It is available on a per volume level in the volume module and on a per volume and viewer level in the Slice viewers/3D viewers. | ** It is available on a per volume level in the volume module and on a per volume and viewer level in the Slice viewers/3D viewers. | ||
− | [[image:Screen Shot 2013-07-01 at 4.32.41 PM.png|thumb| | + | [[image:Screen Shot 2013-07-01 at 4.32.41 PM.png|thumb| 200px|right|different interpolation options in slice and 3D viewers]] |
− | + | [[image:Screen Shot 2013-07-02 at 2.20.17 PM.png|thumb| 200px|right|Turn off interpolation attribute of the volume using the slice view controller]] | |
− | + | * Why does this work: | |
− | Why does this work: | + | <code> |
lm = slicer.app.layoutManager() | lm = slicer.app.layoutManager() | ||
td = lm.threeDWidget(0) | td = lm.threeDWidget(0) | ||
ms = td.getDisplayableManagers() | ms = td.getDisplayableManagers() | ||
− | but not this: | + | </code> |
+ | * but not this: | ||
+ | <code> | ||
slicer.vtkMRMLMarkupsFiducialDisplayableManager() | slicer.vtkMRMLMarkupsFiducialDisplayableManager() | ||
+ | </code> |
Revision as of 18:23, 2 July 2013
Home < Developer Meetings < 20130702Contents
To discuss
- Release plans
- Need to have a version/stable release for upcoming training events starting in September
- Need time to test and update documentation
- Triage of the 4.3 release roadmap
- What to do with 'unfunded' feature requests and issues? Suggestion is to assign them to None as a flag that these are good project for new developers to address.
- How to simplify the workflow for contributing extensions. Goal: That a biomedical engineer can contribute an extension without hand holding.
- Documentation to warn against adding new libraries and listing of ones that are available.
- One click upload
- #3200: Option to make non-interpolated views as default
- Sorry I won't make the hangout. Viewing individual pixels is generally useful for technical work, such as medical physics. It is a common feature in commercial programs, and we eventually will want in Slicer, but not terribly urgent. -Greg
- It is available on a per volume level in the volume module and on a per volume and viewer level in the Slice viewers/3D viewers.
- Why does this work:
lm = slicer.app.layoutManager()
td = lm.threeDWidget(0)
ms = td.getDisplayableManagers()
- but not this:
slicer.vtkMRMLMarkupsFiducialDisplayableManager()