【发布时间】:2014-02-21 05:44:08
【问题描述】:
我当前的 Python 代码(如下)将图像分割成 n 个切片,并按行/列顺序返回每个切片的坐标。
与其从 xMin/yMin 1/1 开始并一次完成一行,我希望从图像的中间开始,然后将自己螺旋出来,最终完成所有切片。如何实现?
import math
slices = 11
imageWidth = 1024
imageHeight = 576
totalPixels = imageWidth * imageHeight
print 'Slices: ' + str(slices)
# Re-calculate slices
slices = int(slices/2)*2
print 'Re-calculated slices: ' + str(slices)
print 'Total pixels in image: ' + str(totalPixels)
print 'Maximum slices allowed: ' + str(totalPixels/4)
factor = math.sqrt( slices )
print 'Factor: ' + str(factor)
if (slices > totalPixels/4):
print 'You cannot use more than ' + int(totalPixels/4) + ' slices!'
else:
regionWidth = int(math.ceil(imageWidth / factor))
regionHeight = int(math.ceil(imageHeight / factor))
print 'Region size: ' + str(int(regionWidth)) + 'x' + str(int(regionHeight))
print 'Region width: ' + str(regionWidth)
print 'Region height: ' + str(regionHeight)
imageWidthRounded = int( math.ceil(factor) * math.ceil( imageWidth / factor ) )
restWidth = imageWidthRounded - imageWidth
imageHeightRounded = int( math.ceil(factor) * math.ceil( imageHeight / factor ) )
restHeight = imageHeightRounded - imageHeight
print 'Rest width: ' + str(restWidth)
print 'Rest height: ' + str(restHeight)
factorRounded = int(math.ceil(factor))
print 'Factor rounded: ' + str(factorRounded)
xMin = 0
xMax = 0
yMin = 0
yMax = 0
rows = factorRounded
columns = factorRounded
print 'Total rows: ' + str(rows)
print 'Total columns: ' + str(columns)
for column in range(1, columns+1):
xMin = 0
xMax = 0
if column == columns:
print 'Col '+ str(column) + ' (last column) '
yMin = (column*regionHeight + 1) - regionHeight
yMax += (regionHeight - restHeight)
else:
print 'Col '+ str(column)
yMin = (column*regionHeight + 1) - regionHeight
yMax += regionHeight
for row in range(1, rows+1):
if row == rows:
xMin = (row*regionWidth + 1) - regionWidth
xMax += (regionWidth-restWidth)
print 'Row ' + str(row) + ': xMin=' +str(xMin) + '\t xMax=' + str(xMax) + '\t yMin=' + str(yMin) + '\t yMax=' + str(yMax) + ' (last row)'
else:
xMin = (row*regionWidth + 1) - regionWidth
xMax += regionWidth
print 'Row ' + str(row) + ': xMin=' +str(xMin) + '\t xMax=' + str(xMax) + '\t yMin=' + str(yMin) + '\t yMax=' + str(yMax)
【问题讨论】:
-
假设您将网格存储为二维列表是否正确?您想要的网格 [[1, 2], [3, 4]] 的输出是否类似于 [1, 2, 4, 3]?
-
听起来不错,是的。
标签: python math integer spiral