Skip to content
Advertisement

Print values of an array as x coordinates and y coordinates seperately – IndexError: list index out of range

I am trying to plot values of x coordinates and y coordinates of image array seperately

step1: 2 image arrays are given of size (10,2)

step2: find matching coordinates if they are same or distance between them is lessthan 3

step3: print x coordinates and y coordinates of image1 & image 2

My code:

JavaScript

expected output: xcoordinates now: IndexError: list index out of range

Advertisement

Answer

for i in new_x_coords1: print(new_x_coords1[i] ),i is the data in new_x_coords1,not index,if you want to use index:

JavaScript

code:

JavaScript

result:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement