目标候选(区域)/ 目标提议:在计算机视觉中,指算法从一张图像中提出一组可能包含物体的候选区域(bounding boxes 或 segments),以减少后续检测/识别需要搜索的范围。(常见于目标检测流水线中,如先生成 proposals,再分类与回归。)
/ˈɒbdʒekt prəˈpəʊzəl/(英式)
/ˈɑːbdʒekt prəˈpoʊzəl/(美式)
The model generates object proposals before classification.
模型会在分类之前先生成目标候选区域。
To improve detection speed, the system uses an object proposal method to narrow down likely object locations, then refines them with a neural network.
为了提升检测速度,系统使用目标候选方法先缩小可能的目标位置范围,再用神经网络进行细化。
object 意为“物体/目标”,proposal 意为“提议/候选方案”。在计算机视觉语境中,object proposal 直译可理解为“对可能物体位置的提议”,指由算法“提名”的候选区域集合;这一术语在传统检测方法与早期深度学习检测框架中非常常见。