#55 first version of a working Ui

Can only work if given the right parameters, (no safety)
This commit is contained in:
Ian
2019-03-24 20:48:45 -04:00
parent 4593079feb
commit cf1ebd0e0f
3 changed files with 59 additions and 1 deletions

View File

@@ -77,7 +77,11 @@ def findDirection(image, line, column):
def createSequence(image):
"""
Create a sequence of index coordinates from a path matrix
:param image: matrix of the path the tool needs to take
:return: Array of class coordinates (X , Y)
"""
width = len(image[0])
height = len(image)
sequence = []