Arranges a batch B of (image) tensors in a grid, with optional padding between images. Expects a 4d mini-batch tensor of shape (B x C x H x W).
vision_make_grid(
tensor,
scale = TRUE,
num_rows = 8,
padding = 2,
pad_value = 0
)
a 3d torch_tensor of shape \(\approx(C , num\_rows \times H , num\_cols \times W)\) of all images arranged in a grid.
Other image display:
draw_bounding_boxes()
,
draw_keypoints()
,
draw_segmentation_masks()
,
tensor_image_browse()
,
tensor_image_display()