Numpy配列(画像)をタイルに分割して反復する方法は?[複製]

Jan 04 2021

Numpy Arrayタイプの画像があり、繰り返し処理できる9(3 x 3)のタイルに分割したいと思います。これどうやってするの?

これがnumpy.ndarrayを生成するためのこれまでの私のコードですが、私はそれを分割することができませんでした:

分割するnumpy画像配列はth1です

import cv2
import numpy as np

# Only for the threshold display
from matplotlib import pyplot as plt

# The Image to be used
image = 'six.png'

# Finding the average greyscale value
image_bgr = cv2.imread(image, cv2.IMREAD_COLOR)

# Calculate the mean of each channel
channels = cv2.mean(image_bgr)
# Type Float
thresh = channels[0]/2
#print (thresh)

# Displaying the threshold value
img = cv2.imread(image,0)
img = cv2.medianBlur(img,5)

# If below then black else white 
ret,th1 = cv2.threshold(img,thresh,255,cv2.THRESH_BINARY)


titles = ['Original Image', 'Global Thresholding']
images = [img, th1, ret]

for i in range(2):
    plt.subplot(2,2,i+1),plt.imshow(images[i],'gray')
    plt.title(titles[i])
    plt.xticks([]),plt.yticks([])

# Shows single image on its' own
plt.imshow(images[1], 'gray')
plt.xticks([]),plt.yticks([])

これが画像(six.png)です:

回答

2 GrgurDamiani Jan 04 2021 at 18:57

私がすることは、完全な画像の「タイル」を保存するリストまたは2次元配列を作成することです。タイルは、以下のコードを使用してコピーされます。

height, width, dim = img.shape
image_tile = img[0:height/3, 0:width/3]

座標内にある完全な画像配列の一部を含む新しいndarrayimage_tileを作成します。この場合、それは左上のタイルです。

forループを使用した例全体は、次のようになります。

image_tile = []
for i in range(0,3):
    for j in range(0,3):
        image_tile.append(img[i * height/3:(i+1) * height/3, j * width/3:(j+1) * width/3])

これがお役に立てば幸いです。

1 Aiyush Jan 04 2021 at 19:31

私は他の場所から適応された解決策を見つけました、そしてそれは素晴らしい働きをします!

img = th1
numrows, numcols = 3, 3
height = int(img.shape[0] / numrows)
width = int(img.shape[1] / numcols)
for row in range(numrows):
    for col in range(numcols):
        y0 = row * height
        y1 = y0 + height
        x0 = col * width
        x1 = x0 + width
        individual =  (img[y0:y1, x0:x1])
        plt.imshow(individual, 'gray')
        plt.xticks([]),plt.yticks([])
        plt.show()