这是我在pycharm 2017.2中的代码。运行后有一个像这样的indexerror: indexerror
indexerror:索引200超出了大小为200的axix 0。
这里的代码似乎发生了问题。
我不知道发生了什么。
任何人都可以帮助我:)
来自scipy import misc 导入数学
# Returns string of 12-bit color at row x, column y of image
def get_color_bits(im, x, y):
# convert color components to byte string and slice needed upper bits
b = format(im[y][x][0], 'b').zfill(8)
rx = b[0:4]
b = format(im[y][x][1], 'b').zfill(8)
gx = b[0:4]
b = format(im[y][x][2], 'b').zfill(8)
bx = b[0:4]
# return concatination of RGB bits
return str(rx+gx+bx)