Home

proposalbased

Proposalbased refers to a class of methods in computer vision and related fields that generate a limited set of candidate regions, or proposals, which are then evaluated to detect objects or other targets. The core idea is to separate proposal generation from final decision making, allowing the system to focus computation on promising areas of the image.

In object detection, a typical proposalbased approach first uses a region proposal mechanism, such as a region

The proposalbased paradigm was popularized by the R-CNN family, including Fast R-CNN and Faster R-CNN, with Faster

Advantages of proposalbased methods include higher localization accuracy, better handling of small or densely packed objects,

Beyond object detection, the general idea also appears in other domains as a strategy for hypothesis generation,

proposal
network
or
an
external
algorithm,
to
produce
a
manageable
number
of
candidate
bounding
boxes.
A
second-stage
network
then
classifies
each
proposal,
refines
its
coordinates,
and
sometimes
produces
additional
outputs
like
segmentation
masks.
This
two-stage
structure
contrasts
with
proposalfree,
or
single-shot,
detectors
that
predict
objects
directly
in
one
pass.
R-CNN
introducing
an
end-to-end
trainable
region
proposal
network.
Extensions
like
Mask
R-CNN
add
instance
segmentation.
Across
variants,
proposals
are
often
associated
with
anchor
boxes
and
refined
via
regression,
while
non-maximum
suppression
is
used
to
reduce
duplicates.
and
modular
design
that
can
incorporate
additional
tasks
(e.g.,
segmentation).
downsides
include
higher
computational
cost
and
dependence
on
the
quality
and
quantity
of
proposals,
which
can
complicate
training
and
inference.
where
promising
candidates
are
proposed
first
and
then
evaluated
or
refined.
See
also
two-stage
detectors,
single-stage
detectors,
and
region
proposals.