tf.image.crop_and_resize
处理2D图像,这是形状为[batch, image_height, image_width, depth]
的4-D张量。
然而,我想处理3D图像,这是形状[batch, image_height, image_width, image_depth, 1]
的5-D张量。我的框是[y1, x1, z1, y2, x2, z2]
。我的crop_size是[crop_height, crop_width, crop_depth]
。
如何裁剪和调整3D图像的大小?谢谢!