The Kadir–Brady saliency detector extracts features of objects in images that are distinct and representative. It was invented by Timor Kadir and J. Michael Brady[1] in 2001 and an affine invariant version was introduced by Kadir and Brady in 2004[2] and a robust version was designed by Shao et al.[3] in 2007.
The detector uses the algorithms to more efficiently remove background noise and so more easily identify features which can be used in a 3D model. As the detector scans images it uses the three basics of global transformation, local perturbations and intra-class variations to define the areas of search, and identifies unique regions of those images rather than using the more traditional corner or blob searches. It attempts to be invariant to affine transformations and illumination changes.[4]
This leads to a more object oriented search than previous methods and outperforms other detectors due to non blurring of the images, an ability to ignore slowly changing regions and a broader definition of surface geometry properties. As a result, the Kadir–Brady saliency detector is more capable at object recognition than other detectors whose main focus is on whole image correspondence.
Many computer vision and image processing applications work directly with the features extracted from an image, rather than the raw image; for example, for computing image correspondences, or for learning object categories. Depending on the applications, different characteristics are preferred. However, there are three broad classes of image change under which good performance may be required:
Global transformation: Features should be repeatable across the expected class of global image transformations. These include both geometric and photometric transformations that arise due to changes in the imaging conditions. For example, region detection should be covariant with viewpoint as illustrated in Figure 1. In short, we require the segmentation to commute with viewpoint change. This property will be evaluated on the repeatability and accuracy of localization and region estimation.
Local perturbations: Features should be insensitive to classes of semi-local image disturbances. For example, a feature responding to the eye of a human face should be unaffected by any motion of the mouth. A second class of disturbance is where a region neighbours a foreground/background boundary. The detector can be required to detect the foreground region despite changes in the background.
Intra-class variations: Features should capture corresponding object parts under intra-class variations in objects. For example, the headlight of a car for different brands of car (imaged from the same viewpoint).
All Feature detection algorithms attempt to detect regions which are stable under the three types of image change described above. Instead of finding a corner, or blob, or any specific shape of region, the Kadir–Brady saliency detector looks for regions which are locally complex, and globally discriminative. Such regions usually correspond to regions more stable under these types of image change.
In the field of Information theory Shannon entropy is defined to quantify the complexity of a distribution p as
plogp
To measure the complexity of an image region
\{x,R\}
x
R
D
{d1,...,dr}
PD(di,x,R)
di
\{x,R\}
Rx
HD(x,R)=-\sumiPD(di,x,R)logPD(di,x,R).
HD(x,R)
x
R
HD(x,R)
The following subsections will discuss different methods to select regions with high local complexity and greater discrimination between different regions.
The first version of the Kadir–Brady saliency detector[10] only finds Salient regions invariant under similarity transformation. The algorithm finds circle regions with different scales. In other words, given
HD(x,s)
R
\{xi,si;i=1...N\}
The method consists of three steps:
HD(x,s)=-\sumiPD(di,x,s)logPD(di,x,s)/10
sp
WD(x,s)=\sumi|
\partial | |
\partials |
PD,(di,x,s)|
YD(x,sp)
HD(x,sp)
WD(x,sp)
For each x the method picks a scale
sp
YD(x,sp)
YD(x,sp)
x
Previous method is invariant to the similarity group of geometric transformations and to photometric shifts. However, as mentioned in the opening remarks, the ideal detector should detect region invariant up to viewpoint change. There are several detector [] can detect affine invariant region which is a better approximation of viewpoint change than similarity transformation.
To detect affine invariant region, the detector need to detect ellipse as in figure 4.
R
This modification increases the search space of the previous algorithm from a scale to a set of parameters and therefore the complexity of the affine invariant saliency detector increases. In practice the affine invariant saliency detector starts with the set of points and scales generated from the similarity invariant saliency detector then iteratively approximates the suboptimal parameters.
Although similarity invariant saliency detector is faster than Affine invariant saliency detector it also has the drawback of favoring isotropic structure, since the discriminative measure
WD
To summarize: Affine invariant saliency detector is invariant to affine transformation and able to detect more generate salient regions.
It is intuitive to pick points from a higher salient score directly and stop when a certain number of threshold on "number of points" or "salient score" is satisfied. Natural images contain noise and motion blur which both act as randomisers and generally increase entropy, affecting previously low entropy values more than high entropy values.
A more robust method would be to pick regions rather than points in entropy space. Although the individual pixels within a salient region may be affected at any given instant, by the noise, it is unlikely to affect all of them in such a way that the region as a whole becomes non-salient.
It is also necessary to analyze the whole saliency space such that each salient feature is represented. A global threshold approach would result in highly salient features in one part of the image dominating the rest. A local threshold approach would require the setting of another scale parameter.
A simple clustering algorithm meets these two requirements are used at the end of the algorithm. It works by selecting highly salient points that have local support i.e. nearby points with similar saliency and scale. Each region must be sufficiently distant from all others (in R3) to qualify as a separate entity. For robustness we use a representation that includes all of the points in a selected region. The method works as follows:
The algorithm is implemented as GreedyCluster1.m in matlab by Dr. Timor Kadir[5]
In the field of computer vision different feature detectors have been evaluated by several tests. The most profound evaluation is published in the International Journal of Computer Vision in 2006.[6] The following subsection discuss the performance of Kadir–Brady saliency detector on a subset of a test in the paper.
In order to measure the consistency of a region detected on the same object or scene across images under global transformation, repeatability score, which is first proposed by Mikolajczyk and Cordelia Schmid in [18, 19] is calculated as follows:[7] [8]
Firstly, overlap error
\epsilon
\mua
\mub
\epsilon=1-
\mua\cap(AT\mubA) | |
\mua\cup(AT\mubA) |
where A is the locally linearized affine transformation of the homography between the two images,
and
\mua\cap(AT\mubA)
\mua\cup(AT\mubA)
Notice
\mua
\epsilon
\epsilon0
Then the repeatability score for a given pair of images is computed as the ratio between the number of region-to-region correspondences and the smaller of the number of regions in the pair of images, where only the regions located in the part of the scene present in both images are counted. In general we would like a detector to have a high repeatability score and a large number of correspondences.
The specific global transformations tested in the test dataset are:
The performance of Kadir–Brady saliency detector is inferior to most of other detectors mainly because the number of points detected is usually lower than other detectors.
The precise procedure is given in the Matlab code from Detector evaluation
In the task of object class categorization, the ability of detecting similar regions given intra-class variation and image perturbations across object instance is very critical. Repeatability measures over intra-class variation and image perturbations is proposed. The following subsection will introduce the definition and discuss the performance.
Suppose there are a set of images of the same object class e.g., motorbikes. A region detection operator which is unaffected by intra-class variation will reliably select regions on corresponding parts of all the objects — say the wheels, engine or seat for motorbikes.
Repeatability over intra-class variation is measuring the (average) number of correct correspondences over the set of images, where the correct correspondences is established by manual selection.
A region is matched if it fulfills three requirements:
In detail the average correspondence score S is measured as follows.
N regions are detected on each image of the M images in the dataset. Then for a particular reference image, i, the correspondence score
Si
Si=
Totalnumberofmatches | = | |
Totalnumberofdetectedregions |
| |||||||
N(M-1) |
The score
Si
The Kadir–Brady saliency detector gives the highest score across three test classes which are motorbike, car and face.The saliency detector indicates that most detections are near the object. In contrast, other detectors maps show a much more diffuse pattern over the entire area caused by poor localization and false responses to background clutter.
In order to test insensitivity to image perturbation the data set is split into two parts: the first contains images with a uniform background and the second images with varying degrees of background clutter. If the detector is robust to background clutter then the average correspondence score S should be similar for both subsets of images.
In this test saliency detector also outperforms other detectors due to three reasons:
The saliency detector is most useful in the task of object recognition, whereas several other detectors are more useful in the task of computing image correspondences. However, in the task of 3D object recognition where all three types of image change are combined, saliency detector might still be powerful.