欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

TypeError: slice indices must be integers or None or have an __index__ method

程序员文章站 2022-07-15 11:08:38
...
start_width = (width_large - width_small) / 2
start_height = (height_large - height_small) / 2

img_large[start_height:start_height + height_small,
                  start_width:start_width + width_small] = img_small


TypeError: slice indices must be integers or None or have an __index__ method
这里最后一句切片的时候报错!

TypeError: slice indices must be integers or None or have an __index__ method