MCPcopy Create free account
hub / github.com/apache/singa / preprocess

Function preprocess

examples/onnx/tiny_yolov2.py:33–37  ·  view source on GitHub ↗
(img)

Source from the content-addressed store, hash-verified

31
32
33def preprocess(img):
34 img = np.array(img).astype(np.float32)
35 img = np.rollaxis(img, 2, 0)
36 img = np.expand_dims(img, axis=0)
37 return img
38
39
40def get_image():

Callers 1

tiny_yolov2.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected