Down samples image to resolution
(img)
| 56 | |
| 57 | |
| 58 | def preprocess(img): |
| 59 | """Down samples image to resolution""" |
| 60 | img = skimage.transform.resize(img, resolution) |
| 61 | img = img.astype(np.float32) |
| 62 | img = np.expand_dims(img, axis=0) |
| 63 | return img |
| 64 | |
| 65 | |
| 66 | def create_simple_game(): |
no test coverage detected