// Easily stitch images via `utils.stitch_images`
stitched = utils.stitch_images(images)
if show:
cv2.imshow("Multiple runs of ouzel", stitched)cv2.waitKey(0)
def visualize_multiple_categories(show=True):
Example to show how to visualize images that activate multiple categories
After Change
plt.axis("off")
plt.imshow(stitched)
plt.title("Multiple runs of ouzel")
plt.show()
def visualize_multiple_categories(show=True):
Example to show how to visualize images that activate multiple categories