Skip to content

Commit

Permalink
Minor updates and increment patch version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdouglass committed May 15, 2018
1 parent 9af8308 commit 8c2f6a8
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 13 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Change Log
All notable changes to this project will be documented in this file.

## Unreleased
## [v0.0.2]

### Added

- The `DefaultPredictor` class now automatically crops the input image
to dimensions that are a multiple of four.

### Changed
- Moved the exceptions associated with the `Predictor` interface into
the public `predictors` package.

## [v0.0.1]

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@
author = 'Baptiste Ottino, Kyle M. Douglass'

# The short X.Y version
version = '0.0.2-SNAPSHOT'
version = '0.0.2'
# The full version, including alpha/beta/rc tags
release = '0.0.2-SNAPSHOT'
release = '0.0.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<groupId>ch.epfl.leb</groupId>
<artifactId>DEFCoN_</artifactId>
<version>0.0.2-SNAPSHOT</version>
<version>0.0.2</version>

<name>DEFCoN-ImageJ</name>
<description>ImageJ plugin for DEFCoN, a fluorescence spot counter using fully convolutional neural networks.</description>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/ch/epfl/leb/defcon/ij/DensityCount.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

import ch.epfl.leb.defcon.predictors.Predictor;
import ch.epfl.leb.defcon.predictors.internal.DefaultPredictor;
import ch.epfl.leb.defcon.predictors.internal.SessionClosedException;
import ch.epfl.leb.defcon.predictors.internal.ImageBitDepthException;
import ch.epfl.leb.defcon.predictors.internal.UninitializedPredictorException;
import ch.epfl.leb.defcon.predictors.SessionClosedException;
import ch.epfl.leb.defcon.predictors.ImageBitDepthException;
import ch.epfl.leb.defcon.predictors.UninitializedPredictorException;

import ij.IJ;
import ij.ImagePlus;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
package ch.epfl.leb.defcon.predictors.internal;
package ch.epfl.leb.defcon.predictors;

/**
* Raised when an image with an invalid bit-depth is supplied to the predictor.
Expand Down
3 changes: 0 additions & 3 deletions src/main/java/ch/epfl/leb/defcon/predictors/Predictor.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@
*/
package ch.epfl.leb.defcon.predictors;

import ch.epfl.leb.defcon.predictors.internal.SessionClosedException;
import ch.epfl.leb.defcon.predictors.internal.ImageBitDepthException;
import ch.epfl.leb.defcon.predictors.internal.UninitializedPredictorException;

import ij.process.ImageProcessor;
import ij.process.FloatProcessor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
package ch.epfl.leb.defcon.predictors.internal;
package ch.epfl.leb.defcon.predictors;

/**
* Raised when a prediction is requested but the TensorFlow session has already been closed.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
package ch.epfl.leb.defcon.predictors.internal;
package ch.epfl.leb.defcon.predictors;

/**
* Raised when a predictor has not yet been fully initialized.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
*/
package ch.epfl.leb.defcon.predictors.internal;

import ch.epfl.leb.defcon.predictors.ImageBitDepthException;
import ch.epfl.leb.defcon.predictors.SessionClosedException;
import ch.epfl.leb.defcon.predictors.UninitializedPredictorException;
import ch.epfl.leb.defcon.predictors.Predictor;

import ij.gui.Roi;
Expand Down

0 comments on commit 8c2f6a8

Please sign in to comment.