parent
b6fc3d8182
commit
c5a666e6c2
14 changed files with 325 additions and 44 deletions
@ -0,0 +1,67 @@ |
||||
Common Interfaces of Saliency |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
|
||||
Saliency : Algorithm |
||||
------------------- |
||||
|
||||
.. ocv:class:: Saliency |
||||
|
||||
Base abstract class for Saliency algorithms:: |
||||
|
||||
class CV_EXPORTS_W Saliency : public virtual Algorithm |
||||
{ |
||||
public: |
||||
|
||||
virtual ~Saliency(); |
||||
|
||||
static Ptr<Saliency> create( const String& saliencyType ); |
||||
|
||||
bool computeSaliency( const InputArray image, OutputArray saliencyMap ); |
||||
|
||||
String getClassName() const; |
||||
}; |
||||
|
||||
|
||||
Saliency::create |
||||
--------------- |
||||
|
||||
Creates a specialized saliency algorithm by its name. |
||||
|
||||
.. ocv:function:: static Ptr<Saliency> create( const String& saliencyType ); |
||||
|
||||
:param saliencyType: saliency Type |
||||
|
||||
The following saliency types are now supported: |
||||
|
||||
* ``"SPECTRAL_RESIDUAL"`` -- :ocv:class:`StaticSaliencySpectralResidual` |
||||
|
||||
* ``"BING"`` -- :ocv:class:`ObjectnessBING` |
||||
|
||||
|
||||
Saliency::computeSaliency |
||||
------------------------ |
||||
|
||||
Performs all the operations, according to the specific algorithm created, to obtain the saliency map. |
||||
|
||||
.. ocv:function:: bool computeSaliency( const InputArray image, OutputArray saliencyMap ); |
||||
|
||||
:param image: image or set of input images. According to InputArray proxy and to the needs of different algorithms (currently plugged), the param image may be Mat or vector<Mat> |
||||
:param saliencyMap: saliency map. According to OutputArray proxy and to the results given by different algorithms (currently plugged), the saliency map may be a Mat or vector<Vec4i> (BING results). |
||||
|
||||
Saliency::getClassName |
||||
--------------------- |
||||
|
||||
Get the name of the specific Saliency Algorithm. |
||||
|
||||
.. ocv:function:: String getClassName() const; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1,67 @@ |
||||
Common Interfaces of Saliency |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
|
||||
Saliency : Algorithm |
||||
------------------- |
||||
|
||||
.. ocv:class:: Saliency |
||||
|
||||
Base abstract class for Saliency algorithms:: |
||||
|
||||
class CV_EXPORTS_W Saliency : public virtual Algorithm |
||||
{ |
||||
public: |
||||
|
||||
virtual ~Saliency(); |
||||
|
||||
static Ptr<Saliency> create( const String& saliencyType ); |
||||
|
||||
bool computeSaliency( const InputArray image, OutputArray saliencyMap ); |
||||
|
||||
String getClassName() const; |
||||
}; |
||||
|
||||
|
||||
Saliency::create |
||||
--------------- |
||||
|
||||
Creates a specialized saliency algorithm by its name. |
||||
|
||||
.. ocv:function:: static Ptr<Saliency> create( const String& saliencyType ); |
||||
|
||||
:param saliencyType: saliency Type |
||||
|
||||
The following saliency types are now supported: |
||||
|
||||
* ``"SPECTRAL_RESIDUAL"`` -- :ocv:class:`StaticSaliencySpectralResidual` |
||||
|
||||
* ``"BING"`` -- :ocv:class:`ObjectnessBING` |
||||
|
||||
|
||||
Saliency::computeSaliency |
||||
------------------------ |
||||
|
||||
Performs all the operations, according to the specific algorithm created, to obtain the saliency map. |
||||
|
||||
.. ocv:function:: bool computeSaliency( const InputArray image, OutputArray saliencyMap ); |
||||
|
||||
:param image: image or set of input images. According to InputArray proxy and to the needs of different algorithms (currently plugged), the param image may be Mat or vector<Mat> |
||||
:param saliencyMap: saliency map. According to OutputArray proxy and to the results given by different algorithms (currently plugged), the saliency map may be a Mat or vector<Vec4i> (BING results). |
||||
|
||||
Saliency::getClassName |
||||
--------------------- |
||||
|
||||
Get the name of the specific Saliency Algorithm. |
||||
|
||||
.. ocv:function:: String getClassName() const; |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -0,0 +1 @@ |
||||
Subproject commit 14511ac1cc8564e1aee153efae4bf0453d3e645e |
After Width: | Height: | Size: 68 KiB |
@ -0,0 +1,53 @@ |
||||
Saliency API |
||||
============ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
Many computer vision applications may benefit from understanding where humans focus given a scene. Other than cognitively understanding the way human perceive images and scenes, finding salient regions and objects in the images helps various tasks such as speeding up object detection, object recognition, object tracking and content-aware image editing. |
||||
|
||||
About the saliency, there is a rich literature but the development is very fragmented. The principal purpose of this API is to give a |
||||
unique interface, a unique framework for use and plug sever saliency algorithms, also with very different nature and methodology, but they share the same purpose, organizing algorithms into three main categories: |
||||
|
||||
**Static Saliency**: algorithms belonging to this category, exploit different image features that allow to detect salient objects in a non dynamic scenarios. |
||||
|
||||
**Motion Saliency**: algorithms belonging to this category, are particularly focused to detect salient objects over time (hence also over frame), then there is a temporal component sealing cosider that allows to detect "moving" objects as salient, meaning therefore also the more general sense of detection the changes in the scene. |
||||
|
||||
**Objectness**: Objectness is usually represented as a value which reflects how likely an image window covers an object of any category. Algorithms belonging to this category, avoid making decisions early on, by proposing a small number of category-independent proposals, that are expected to cover all objects in an image. Being able to perceive objects before identifying them is closely related to bottom up visual attention (saliency). |
||||
|
||||
|
||||
UML design: |
||||
|
||||
----------- |
||||
|
||||
**Saliency diagram** |
||||
|
||||
.. image:: pics/saliency.png |
||||
:width: 80% |
||||
:alt: Saliency diagram |
||||
:align: center |
||||
|
||||
To see how API works, try tracker demo: https://github.com/fpuja/opencv_contrib/blob/saliencyModuleDevelop/modules/saliency/samples/computeSaliency.cpp |
||||
|
||||
|
||||
.. note:: This Tracking API has been designed with PlantUML. If you modify this API please change UML files under modules/tracking/misc/ |
||||
|
||||
The following reference was used in the API |
||||
|
||||
.. [SR] Hou, Xiaodi, and Liqing Zhang. "Saliency detection: A spectral residual approach." Computer Vision and Pattern Recognition, 2007. CVPR'07. IEEE Conference on. IEEE, 2007. |
||||
|
||||
.. [BING] Cheng, Ming-Ming, et al. "BING: Binarized normed gradients for objectness estimation at 300fps." IEEE CVPR. 2014. |
||||
|
||||
|
||||
Saliency classes: |
||||
---------------- |
||||
|
||||
.. toctree:: |
||||
:maxdepth: 2 |
||||
|
||||
common_interfaces_saliency |
||||
saliency_categories |
||||
static_saliency_algorithms |
||||
motion_saliency_algorithms |
||||
objectness_algorithms |
||||
|
||||
|
@ -0,0 +1,52 @@ |
||||
Saliency API |
||||
============ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
Many computer vision applications may benefit from understanding where humans focus given a scene. Other than cognitively understanding the way human perceive images and scenes, finding salient regions and objects in the images helps various tasks such as speeding up object detection, object recognition, object tracking and content-aware image editing. |
||||
|
||||
About the saliency, there is a rich literature but the development is very fragmented. The principal purpose of this API is to give a |
||||
unique interface, a unique framework for use and plug sever saliency algorithms, also with very different nature and methodology, but they share the same purpose, organizing algorithms into three main categories: |
||||
|
||||
**Static Saliency**: algorithms belonging to this category, exploit different image features that allow to detect salient objects in a non dynamic scenarios. |
||||
|
||||
**Motion Saliency**: algorithms belonging to this category, are particularly focused to detect salient objects over time (hence also over frame), then there is a temporal component sealing cosider that allows to detect "moving" objects as salient, meaning therefore also the more general sense of detection the changes in the scene. |
||||
|
||||
**Objectness**: Objectness is usually represented as a value which reflects how likely an image window covers an object of any category. Algorithms belonging to this category, avoid making decisions early on, by proposing a small number of category-independent proposals, that are expected to cover all objects in an image. Being able to perceive objects before identifying them is closely related to bottom up visual attention (saliency). |
||||
|
||||
|
||||
UML design: |
||||
|
||||
----------- |
||||
|
||||
**Saliency diagram** |
||||
|
||||
.. image:: pics/saliency.png |
||||
:width: 80% |
||||
:alt: Saliency diagram |
||||
:align: center |
||||
|
||||
To see how API works, try tracker demo: https://github.com/fpuja/opencv_contrib/blob/saliencyModuleDevelop/modules/saliency/samples/computeSaliency.cpp |
||||
|
||||
|
||||
.. note:: This Tracking API has been designed with PlantUML. If you modify this API please change UML files under modules/tracking/misc/ |
||||
|
||||
The following reference was used in the API |
||||
|
||||
.. [SR] Hou, Xiaodi, and Liqing Zhang. "Saliency detection: A spectral residual approach." Computer Vision and Pattern Recognition, 2007. CVPR'07. IEEE Conference on. IEEE, 2007. |
||||
|
||||
.. [BING] Cheng, Ming-Ming, et al. "BING: Binarized normed gradients for objectness estimation at 300fps." IEEE CVPR. 2014. |
||||
|
||||
|
||||
Saliency classes: |
||||
---------------- |
||||
|
||||
.. toctree:: |
||||
:maxdepth: 2 |
||||
|
||||
saliency_categories |
||||
static_saliency_algorithms |
||||
motion_saliency_algorithms |
||||
objectness_algorithms |
||||
|
||||
|
@ -0,0 +1,34 @@ |
||||
Saliency API |
||||
============ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
|
||||
UML design: |
||||
----------- |
||||
|
||||
**Saliency diagram** |
||||
|
||||
.. image:: pics/saliency.png |
||||
:width: 80% |
||||
:alt: Tracker diagram |
||||
:align: center |
||||
|
||||
To see how API works, try tracker demo: |
||||
|
||||
|
||||
.. note:: This Tracking API has been designed with PlantUML. If you modify this API please change UML files under modules/tracking/misc/ |
||||
|
||||
The following reference was used in the API |
||||
|
||||
.. [SR] Hou, Xiaodi, and Liqing Zhang. "Saliency detection: A spectral residual approach." Computer Vision and Pattern Recognition, 2007. CVPR'07. IEEE Conference on. IEEE, 2007. |
||||
|
||||
.. [BING] Cheng, Ming-Ming, et al. "BING: Binarized normed gradients for objectness estimation at 300fps." IEEE CVPR. 2014. |
||||
|
||||
|
||||
Saliency classes: |
||||
---------------- |
||||
|
||||
.. toctree:: |
||||
:maxdepth: 2 |
||||
|
@ -0,0 +1,6 @@ |
||||
Saliency categories |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
|
@ -0,0 +1,6 @@ |
||||
Common Interfaces of Tracker |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
||||
|
@ -0,0 +1,5 @@ |
||||
Static Saliency algorithms |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
@ -0,0 +1,5 @@ |
||||
Static Saliency categories |
||||
============================ |
||||
|
||||
.. highlight:: cpp |
||||
|
Loading…
Reference in new issue