Python3: 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,报错位置:

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

这里最后一句切片的时候报错!

解决方案

出现这个问题的原因在于上边的start_widthstart_height都是浮点数,因为/运算得到的结果自动就是浮点数。比如:

>>> 10/5
>>> 2.0

而切片做索引是不支持浮点数的,所以这里要转换为int类型,或者将/换成//运算!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值