This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
Releases: uavaustin/target-finder
Releases · uavaustin/target-finder
v0.3.1
v0.3.0
Features
- 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.
Chores
- Remove use of
FastGFile
per upcoming Tensorflow deprecation.
v0.2.0
Features
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
.
Breaking Changes
- 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.
Fixes
- 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 intarget_finder.find_targets(...)
.
Chores
- 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.