def reproject(homography, points):
    return transform(homography, back_project(homography, points))
def back_project(homography, points):
    return transform(inv(homography), points)