Skip to content
Snippets Groups Projects
Commit 7a7d2895 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Fixed image bounds calculation for pixdim/identity transformations -

they were not being calculated correctly.
parent 7ac9f8f6
No related branches found
No related tags found
No related merge requests found
...@@ -176,15 +176,27 @@ class Image(props.HasProperties): ...@@ -176,15 +176,27 @@ class Image(props.HasProperties):
if self.transform == 'affine': if self.transform == 'affine':
voxToWorldMat = self.nibImage.get_affine().transpose() voxToWorldMat = self.nibImage.get_affine().transpose()
pixdims = self.nibImage.get_header().get_zooms()
elif self.transform == 'pixdim': elif self.transform == 'pixdim':
pixdims = [self.pixdim[0], self.pixdim[1], self.pixdim[2], 1] pixdims = self.nibImage.get_header().get_zooms()
voxToWorldMat = np.diag(pixdims) voxToWorldMat = np.diag([pixdims[0], pixdims[1], pixdims[2], 1.0])
elif self.transform == 'id': elif self.transform == 'id':
voxToWorldMat = np.identity(4) voxToWorldMat = np.identity(4)
pixdims = [1.0, 1.0, 1.0]
self.voxToWorldMat = np.array(voxToWorldMat, dtype=np.float32) self.voxToWorldMat = np.array(voxToWorldMat, dtype=np.float32)
self.worldToVoxMat = linalg.inv(self.voxToWorldMat) self.worldToVoxMat = linalg.inv(self.voxToWorldMat)
self.pixdims = pixdims
# for pixdim/identity transformations, we want the world
# location (0, 0) to map to voxel location (0, 0)
if self.transform in ['pixdim', 'id']:
for i in range(3):
self.voxToWorldMat[3, i] = self.pixdims[i] * 0.5
self.worldToVoxMat[3, i] = -self.pixdims[i] * 0.5
log.debug('Image {} transformation matrix changed: {}'.format( log.debug('Image {} transformation matrix changed: {}'.format(
self.name, self.voxToWorldMat)) self.name, self.voxToWorldMat))
...@@ -197,6 +209,10 @@ class Image(props.HasProperties): ...@@ -197,6 +209,10 @@ class Image(props.HasProperties):
x, y, z = self.shape[:3] x, y, z = self.shape[:3]
x = x - 1
y = y - 1
z = z - 1
points = np.zeros((8, 3), dtype=np.float32) points = np.zeros((8, 3), dtype=np.float32)
points[0, :] = [0, 0, 0] points[0, :] = [0, 0, 0]
...@@ -210,8 +226,8 @@ class Image(props.HasProperties): ...@@ -210,8 +226,8 @@ class Image(props.HasProperties):
tx = self.voxToWorld(points) tx = self.voxToWorld(points)
lo = tx[:, axis].min() lo = tx[:, axis].min() - self.pixdims[axis] * 0.5
hi = tx[:, axis].max() hi = tx[:, axis].max() + self.pixdims[axis] * 0.5
return (lo, hi) return (lo, hi)
......
...@@ -264,14 +264,14 @@ class OrthoPanel(wx.Panel, props.HasProperties): ...@@ -264,14 +264,14 @@ class OrthoPanel(wx.Panel, props.HasProperties):
source = ev.GetEventObject() source = ev.GetEventObject()
w, h = source.GetClientSize() w, h = source.GetClientSize()
log.debug('Mouse click on canvas {}: ({}, {})'.format(
source.name, mx, my))
my = h - my my = h - my
xpos = source.canvasToWorldX(mx) xpos = source.canvasToWorldX(mx)
ypos = source.canvasToWorldY(my) ypos = source.canvasToWorldY(my)
log.debug('Mouse click on canvas {}: ({}, {} -> {}, {})'.format(
source.name, mx, my, xpos, ypos))
if source == self.xcanvas: self.imageList.location.yz = [xpos, ypos] if source == self.xcanvas: self.imageList.location.yz = [xpos, ypos]
elif source == self.ycanvas: self.imageList.location.xz = [xpos, ypos] elif source == self.ycanvas: self.imageList.location.xz = [xpos, ypos]
elif source == self.zcanvas: self.imageList.location.xy = [xpos, ypos] elif source == self.zcanvas: self.imageList.location.xy = [xpos, ypos]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment