View on GitHub

Salientdetector-python

Python package for Large Scale Imaging research @ NLeSC

Download this project as a .zip file Download this project as a tar.gz file

Python software for image processing

Build Status Codacy Badge Codacy Badge

This folder contains a Python implementation of the Salient Region Detector code as part of the image processing part of eStep. The software conforms with the eStep standards.

The original MATLAB implementation can be found at this repository

Documentation can be found on Read the Docs.

The repository contains the following sub-folders:

Notebooks

Several iPython notebooks testing and illustrating major functionality.

salientregions

The module for salient region detection functionality.

tests

Unit tests for the code in salientregions.

Installation

Prerequisites

Installing the package

To install the package salientregions in your environment:

pip install .

To perform tests:

nosetests test

Getting started

The source code documentation can be found here

This code makes heavily use of the OpenCV library, so in order to understand how the code works, it helps to have a look at the OpenCV Documentation.

Images

In OpenCV, images are represented as numpy arrays. Grayscale images are represented by a 2-dimensional array. Color images have a third dimension for the color channel. The Salient Region Detector has a few simplifying assumptions:

Detector object

The complete functionality of the salient region detectors are found in the Detector object. The SalientDetector implements DMSR detection, and MSSRDetector implements MSSR detection (see referred papers for more information about these algorithms). An example of how to use the Detector can be found in this iPython Notebook.

Contributing

If you want to contribute to the code, please have a look at the eStep standarts.

We use numpy-style code documentation.

References

Ranguelova, E.B. - Pauwels, E.J. Morphology-based Stable Salient Regions Detector Proceedings of International Conference on Image and Vision Computing New Zealand 2006 , Great Barrier Island, New Zealand, p.97–102