Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix image index out of range error #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dupeljan
Copy link

Sometimes it's go out of range, so with this it work correctly

@tomaz-suller
Copy link

It'd add another dependency, but I adapted this code to use Numpy to check if the motive overlaps with the image. In my code, I called the motive draw_over_image, but I think it's more straightforward and easier to understand.

draw_over_image_np = np.asarray(Image.open(DRAW_OVER_IMAGE_PATH))
def point_inside_draw_over_image(x, y):
    return np.any(draw_over_image_np[int(y)][int(x)] != 0)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants