ピクセル値を出力させるうえで,理想的な出力結果にしたいです。
python
1 2import cv2 3import numpy as np 4 5img = cv2.imread('gray.png') 6 7assert img is not None, 'cannot open file as img.' 8 9height, width, ch = img.shape 10for i in range(height): 11 for j in range(width): 12 print(img[i, j, :]) 13
出力結果
[108 108 108]
[93 93 93]
[78 78 78]
[93 93 93]
[119 119 119]
[145 145 145]
[165 165 165]
[170 170 170]
理想的な出力結果
[108 193 78 93 119 145 165 170]
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/08 06:50
2019/11/08 06:53
2019/11/08 07:16