ENH: Enhanced the problem set building on the image handing and arrays.
Illustrated dtypes, casting and their importance along with an example
using RGBA images. Also introduce edge detection.
r, c = 5, 4for i in range(1, 9): for j in range(1, 9): a = r - i b = c - j if a and b and a == b or a == -b: print i, j