selective_search的python使用,以及其在python3错误解决

1、绪论
Selective Search是R-CNN这篇文章里用的Region Proposal Method。Selective Search的文章是J.R.R. Uijlings, et al, Selective Search for Object Recognition, IJCV 2012。其中selective search的Python实现开源代码(https://github.com/AlpacaDB/selectivesearch

2、源码使用
这里写图片描述
example文件夹放了一个例子
selectivesearch文件夹放了selective_search核心代码
源码给了一个简单的例子,如下所示

import skimage.data
import selectivesearch

img = skimage.data.astronaut()
img_lbl, regions = selectivesearch.selective_search(img, scale=500, sigma=0.9, min_size=10)
regions[:10]
=>
[{'labels': [0.0], 'rect': (0, 0, 15, 24), 'size': 260},
 {'labels': [1.0], 'rect': (13, 0, 1, 12), 'size': 23},
 {'labels': [2.0], 'rect': (0, 15, 15, 11), 'size': 30},
 {'labels': [3.0], 'rect': (15, 14, 0, 0), 'size': 1},
 {'labels': [4.0], 'rect': (0, 0, 61, 153), 'size': 4927},
 {'labels': [5.0], 'rect': (0, 12, 61, 142), 'size': 177},
 {'labels': [6.0], 'rect': (7, 54, 6, 17), 'size': 8},
 {'labels': [7.0], 'rect': (28, 50, 18, 32), 'size': 22},
 {'labels': [8.0], 'rect': (2, 99, 7, 24), 'size': 24},
 {'labels': [9.0], 'rect': (14, 118, 79, 117), 'size': 4008}]

结果如下:
这里写图片描述

3、python3错误解决
参考博客selectivesearch python3 错误解决
使用python3的朋友们可能会遇到在运行时会遇到如下错误:
错误一:
这里写图片描述
这个比较简单,都会解决,用编辑器打开example.py,在35行使用python3的print用法就行。

for x, y, w, h in candidates:
    # print x, y, w, h
    print(x, y, w, h)
    rect = mpatches.Rectangle((x, y), 
        w, h, fill=False, edgecolor='red', linewidth=1)
    ax.add_patch(rect)
plt.show()

错误二:
这里写图片描述

用编辑器打开selectivesearch.py
将第285行:

i, j = sorted(S.items(), cmp=lambda a, b: cmp(a[1], b[1]))[-1][0]

替换成:

i, j = sorted(list(S.items()), key = lambda a: a[1])[-1][0]

然后将init.py文件中的

from selectivesearch import selective_search  # NOQA

改成

from .selectivesearch import selective_search  # NOQA

详细原因请查看python3 module中init.py的需要注意的地方(其实也可以把两个程序放在同一个文件夹下)

由于字典并 python3 和 python2 并不兼容在206行(R = regions.items())下面添加将 dict_items 转换成 list

r = [elm for elm in R]
R = r

这下就可以正常使用了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值