When I try to use cle.scale() as a drop-in replacement for skimage.transform.rescale(), I get a clipped image, in which the tops and bottom of my objects (nuclei) are cut off. skimage.transform.rescale() works as expected, and outputs an image which has a z dimension appropriately scaled. The image returned from cle.scale() is of the same shape as the input image.
This is my line of code :
rescaled = cle.scale(input_image,factor_x=1,factor_y=1,factor_z=4.398)