In pyVTK, I'm slicing through a dataset using vtkImagePlaneWidget then pulling the imageData off it via getResliceOutput. Now, I'd expect the size of the imageData that comes off it to be proportional to the size of the widget across that dimension, no? That doesn't seem to be the case; rather it seems to round up to powers of two. Dimensions of 2 and 3 on the plane go to extent of 16, 4-7 extent 32, 8-15 extent 64, etcetera. Obvious pattern there. Now, I can see why it might do that if I'd pulled the texture off the widget, since I believe OpenGL used to require powers of two, but surely the direct reslice outut should be proportional to the widget size? Can anyone tell me what's going on here?<br>