Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Releases: uavaustin/target-finder

v0.3.1

22 Oct 03:23
Compare
Choose a tag to compare

Fixes

  • Fixed an undefined reference to the kernel variable in the preprocessing.

v0.3.0

21 Oct 00:37
Compare
Choose a tag to compare

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

10 Aug 03:28
Compare
Choose a tag to compare

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
    override sys.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 in setup.py.
  • Renamed the max_length keyword argument in target_finder.find_blobs(...)
    to max_width to match the existing min_width argument.

Fixes

  • Fixed the default padding setting on the blobs subcommand to match the
    default value for target_finder.find_blobs(...).
  • Confidence numbers for targets are now correctly returned as standard floats
    instead of numpy floats in target_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.

v0.1.1

20 Jul 01:30
Compare
Choose a tag to compare

Fixes

  • Fixed a problem where blobs which were identified as not being shapes were
    being returned in target_finder.find_targets(...).

v0.1.0

15 Jul 14:31
Compare
Choose a tag to compare

Initial release.