本文整理汇总了Python中NN.tsp方法的典型用法代码示例。如果您正苦于以下问题:Python NN.tsp方法的具体用法?Python NN.tsp怎么用?Python NN.tsp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类NN
的用法示例。
在下文中一共展示了NN.tsp方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: import NN [as 别名]
# 或者: from NN import tsp [as 别名]
print('Attempting to open {}.'.format(filename))
im = readImage(filename)
if (max(im.size) > 600):
im = im.resize((int(600*(float(im.size[0])/max(im.size))), int(600*(float(im.size[1])/max(im.size)))))
print('Opened.')
print('Attempting to stipple...')
cellSize = 2
# Create a stippled version of the image; limit 6000 px.
lst = stipple(im, cellSize, 0)
while (len(lst) > 6000):
cellSize += 1
lst = stipple(im, cellSize, 0)
lst = stipple(im, cellSize, 8)
print('There are {} points.'.format(len(lst)))
print('Stippled!')
print('Attempting TSP with naive NN...')
lst = NN.tsp(lst)
print('Now converting to list of segments...')
segSet = createSegSet(lst)
## Let's make sure all of our segments share a point...
print('Correcting any overlaps...')
drawSegSet(segSet, im.size, 'start.jpg')
segSet = correct(segSet, im)
drawSegSet(segSet, im.size, 'end.jpg')
print('Done.')