Fast R-CNN 开源代码 详细图解

先占坑 后面补
R-CNN:
先生成 roi 再提取特征
Fast R-CNN
先提取特征 再生成 roi
在这里插入图片描述
ROIs = region_proposal(image)
for ROI in ROIs
patch = get_patch(image, ROI)
results = detector(patch)

猜你喜欢

转载自blog.csdn.net/qq_21950671/article/details/84108459