## Description Implement a basic Image class to represent an image loaded into memory. Images will be 2D only and can be instantiated with a Numpy array. ## API ```python import numpy as np from calculator import Image img = Image(np.array([0,1], [1,2]))) ```