dlpy.images.ImageTable.resize

ImageTable.resize(width=None, height=None, inplace=True, columns=None)

Resize the images in the ImageTable

Parameters
widthint, optional

Specify the target width of the resized images.

heightint, optional

Specify the target height of the resized images. If not specified, height will be set to be equal to width.

inplacebool, optional

Specifies whether to update the original table, or to create a new one.

columnslist, optional

Specifies a list of column names to be copied over to the resulting table.

Returns
ImageTable

If inplace=False

None

If inplace=True