Skip to content

Commit 5c9f127

Browse files
author
dafnevk
committed
Merge branch 'master' of github.com:NLeSC/SalientDetector-python
2 parents 3b13791 + 2805428 commit 5c9f127

File tree

6 files changed

+20
-8
lines changed

6 files changed

+20
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
All notable changes to this project will be documented in this file.
3+
This project adheres to [Semantic Versioning](http://semver.org/).
4+
5+
## 1.0.0 - 2016-07-??
6+
### Added
7+
- The first release of the salient regions detectors software in Python. This implementation is (almost) equivalent to
8+
the original [MATLAB code](https://github.com/NLeSC/SalientDetector-matlab) and corresponds to the MATLAB's repo initial release.

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# -*- coding: utf-8 -*-
2-
2+
'''
3+
Setting up the Salient region detection in images package.
4+
'''
35
from setuptools import setup, find_packages
46

57
with open('README.md') as f:

tests/test_binarizers.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Testing the binarization functions.
3+
"""
14
# -*- coding: utf-8 -*-
25
from __future__ import absolute_import
36
from .context import salientregions as sr

tests/test_binary_detector.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
# -*- coding: utf-8 -*-
21
"""
3-
Created on Mon Mar 14 13:10:40 2016
4-
5-
@author: dafne
2+
Testing the binary detection functions.
63
"""
4+
# -*- coding: utf-8 -*-
75
from __future__ import absolute_import
86
from .context import salientregions as sr
97
from .context import salientregions_binarydetector

tests/test_detectors.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
"""
2+
Testing the detection functions.
3+
"""
14
# -*- coding: utf-8 -*-
25
from __future__ import absolute_import
36
from .context import salientregions as sr

tests/test_helpers.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# -*- coding: utf-8 -*-
22
"""
3-
Created on Wed Mar 23 16:10:57 2016
4-
5-
@author: elena
3+
Testing the helper functions.
64
"""
75
from __future__ import absolute_import
86
from __future__ import print_function

0 commit comments

Comments
 (0)