- Fixed an undefined reference to the
kernel
variable in the preprocessing.
- Added compatiblity for
target-finder-model
v0.2.0
. - Added contour dilation and erosion to connect nearby contours.
- Now using color area to find background and alphanumeric color.
- Added a version flag to the cli.
- Blobs and targets can now be serialized to strings for debugging and printing.
- Remove use of
FastGFile
per upcoming Tensorflow deprecation.
target-finder-cli targets <file...>
subcommand has been added.- Added support for specifying the maximum blob width in the
blobs
subcommand. - CLI can have arguments added directly in
target_finder.cli.run(...)
that overridesys.argv
.
- The
target-finder-model
module must be installed separately, since the model is now treated as an external dependency that is not listed insetup.py
. - Renamed the
max_length
keyword argument intarget_finder.find_blobs(...)
tomax_width
to match the existingmin_width
argument.
- Fixed the default padding setting on the
blobs
subcommand to match the default value fortarget_finder.find_blobs(...)
. - Confidence numbers for targets are now correctly returned as standard floats
instead of numpy floats in
target_finder.find_targets(...)
.
- Added tox for unit testing.
- Enabled code coverage on tests.
- Dependencies are listed inside of
setup.py
instead of in their own file. - Uploading releases is now done by Travis CI.
- Fixed a problem where blobs which were identified as not being shapes were
being returned in
target_finder.find_targets(...)
.
Initial release.