In pyVTK, I&#39;m slicing through a dataset using vtkImagePlaneWidget then pulling the imageData off it via getResliceOutput. Now, I&#39;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&#39;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&#39;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&#39;s going on here?<br>