Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Evan Edmond
fslpy
Commits
cf229bd4
Commit
cf229bd4
authored
10 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Voxel value updated on changes to both voxel and world coordinates.
parent
df3de478
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/fslview/locationpanel.py
+17
-8
17 additions, 8 deletions
fsl/fslview/locationpanel.py
with
17 additions
and
8 deletions
fsl/fslview/locationpanel.py
+
17
−
8
View file @
cf229bd4
...
@@ -96,12 +96,15 @@ class LocationPanel(wx.Panel, props.HasProperties):
...
@@ -96,12 +96,15 @@ class LocationPanel(wx.Panel, props.HasProperties):
self
.
addListener
(
'
voxelLocation
'
,
self
.
addListener
(
'
voxelLocation
'
,
lName
,
lName
,
self
.
_voxelLocationChanged
)
self
.
_voxelLocationChanged
)
self
.
addListener
(
'
voxelLocation
'
,
lName
,
self
.
_updateVoxelValue
)
self
.
_selectedImageChanged
()
self
.
_selectedImageChanged
()
self
.
_worldLocationChanged
()
self
.
_worldLocationChanged
()
def
_updateVoxelValue
(
self
):
def
_updateVoxelValue
(
self
,
*
a
):
"""
"""
Retrieves the value of the voxel at the current location in the
Retrieves the value of the voxel at the current location in the
currently selected image, and displays it on the value label.
currently selected image, and displays it on the value label.
...
@@ -131,18 +134,24 @@ class LocationPanel(wx.Panel, props.HasProperties):
...
@@ -131,18 +134,24 @@ class LocationPanel(wx.Panel, props.HasProperties):
def
_voxelLocationChanged
(
self
,
*
a
):
def
_voxelLocationChanged
(
self
,
*
a
):
"""
"""
Called when the current voxel location is changed. Propagates the
Called when the current voxel location is changed. Propagates the
change on to the image list world location, and updates the voxel
change on to the image list world location.
value label.
"""
"""
image
=
self
.
imageList
[
self
.
imageList
.
selectedImage
]
image
=
self
.
imageList
[
self
.
imageList
.
selectedImage
]
voxLoc
=
self
.
voxelLocation
.
xyz
voxLoc
=
self
.
voxelLocation
.
xyz
worldLoc
=
image
.
voxToWorld
([
voxLoc
])[
0
]
worldLoc
=
image
.
voxToWorld
([
voxLoc
])[
0
]
worldVoxLoc
=
image
.
worldToVox
([
self
.
imageList
.
location
.
xyz
])[
0
]
# if the current image list location is already equal to the
# new voxel location, don't change it. The voxel location,
# transformed to world coordinates, will be in the centre of
# voxel. But the world location can be anywhere within a
# voxel. So if the world location is already in the correct
# voxel, we don't want it to be shifted to the voxel centre.
if
all
([
vl
==
wvl
for
(
vl
,
wvl
)
in
zip
(
voxLoc
,
worldVoxLoc
)]):
return
self
.
imageList
.
location
.
xyz
=
worldLoc
self
.
imageList
.
location
.
xyz
=
worldLoc
self
.
_updateVoxelValue
()
def
_worldLocationChanged
(
self
,
*
a
):
def
_worldLocationChanged
(
self
,
*
a
):
"""
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment