File tree Expand file tree Collapse file tree 6 files changed +20
-8
lines changed
Expand file tree Collapse file tree 6 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11# -*- coding: utf-8 -*-
2-
2+ '''
3+ Setting up the Salient region detection in images package.
4+ '''
35from setuptools import setup , find_packages
46
57with open ('README.md' ) as f :
Original file line number Diff line number Diff line change 1+ """
2+ Testing the binarization functions.
3+ """
14# -*- coding: utf-8 -*-
25from __future__ import absolute_import
36from .context import salientregions as sr
Original file line number Diff line number Diff line change 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 -*-
75from __future__ import absolute_import
86from .context import salientregions as sr
97from .context import salientregions_binarydetector
Original file line number Diff line number Diff line change 1+ """
2+ Testing the detection functions.
3+ """
14# -*- coding: utf-8 -*-
25from __future__ import absolute_import
36from .context import salientregions as sr
Original file line number Diff line number Diff line change 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"""
75from __future__ import absolute_import
86from __future__ import print_function
You can’t perform that action at this time.
0 commit comments