PIL es la biblioteca de imágenes de Python que proporciona al intérprete de Python capacidades de edición de imágenes. El ImagePath
módulo se utiliza para almacenar y manipular datos vectoriales bidimensionales. Los objetos de ruta se pueden pasar a los métodos en el ImageDraw
módulo.
ImagePath.Path.tolist()
Convierte la ruta a una lista de Python [(x, y), …].
Sintaxis: PIL.ImagePath.Path.tolist(flat=0)
Parámetros:
flat : de forma predeterminada, esta función devuelve una lista de 2 tuplas [(x, y), …]. Si este argumento es True, devuelve una lista plana [x, y, …] en su lugar.
Devuelve: Una lista de coordenadas.
# from PIL importing ImagePath from PIL import ImagePath # creating a list to map getbox = list(zip(range(3, 41, 1), range(11, 22, 2))) result = ImagePath.Path(getbox) # using tolist function a = result.tolist() print(getbox) print(a)
Producción:
[(3, 11), (4, 13), (5, 15), (6, 17), (7, 19), (8, 21)]
[(3.0, 11.0), (4.0, 13.0), (5.0, 15.0), (6.0, 17.0), (7.0, 19.0), (8.0, 21.0)]
Otro ejemplo: cambiar parámetros.
# from PIL importing ImagePath from PIL import ImagePath # creating a list to map getbox = list(zip(range(5, 51, 16), range(15, 22, 4))) result = ImagePath.Path(getbox) # using tolist function a = result.tolist() print(getbox) print(a)
Producción:
[(5, 15), (21, 19)]
[(5.0, 15.0), (21.0, 19.0)]
Publicación traducida automáticamente
Artículo escrito por Sunitamamgai y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA