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

Image indexing #2

Open
EKostinoudis opened this issue Jan 23, 2019 · 1 comment
Open

Image indexing #2

EKostinoudis opened this issue Jan 23, 2019 · 1 comment
Assignees
Labels

Comments

@EKostinoudis
Copy link

for i in range(0, img.shape[0] - 1):
for j in range(0, img.shape[1] - 1):

Should this wrap to the other side of the image or the correct is:

for i in range(1, img.shape[0] - 1):
  for j in range(1, img.shape[1] - 1):
@etsardou
Copy link
Owner

Yes, you're right, it needs 1 instead of 0

@etsardou etsardou self-assigned this Jan 23, 2019
@etsardou etsardou added the bug label Jan 23, 2019
gonidelis pushed a commit to dimitraka/intelligent_robot_systems that referenced this issue Jul 20, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants