Commit 2271bd03 authored by narugo1992's avatar narugo1992
Browse files

dev(narugo): add deprecation to detect_text

parent 068a1cba
Loading
Loading
Loading
Loading
+1 −6
Original line number Diff line number Diff line
@@ -57,11 +57,6 @@ def image_plot(*images, save_as: str, columns=2, keep_axis: bool = False, figsiz
    for i, img in enumerate(images, start=0):
        xi, yi = i // columns, i % columns
        image, label = _image_input_process(img, autocensor)
        if rows == 1 and columns == 1:
            ax = axs
        elif rows == 1:
            ax = axs[yi]
        else:
        ax = axs[xi, yi]
        ax.imshow(image)
        ax.set_title(label)