Skip to content

Releases: TravisWheelerLab/DIPLOMAT

DIPLOMAT Release v0.1.15

19 Dec 23:29
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • "track" and "track_with" will now output .dipui files again
  • removed boilerplate implementation of --dipui_file in lieu of dynamic system that reconciles command line arguments with plugin and frontend arguments
  • removed debugging statements
  • patched a bug that caused a crash when a specified .dipui file name already exists

DIPLOMAT Release v0.1.14

18 Dec 16:38
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • restore dipui_file argument

DIPLOMAT Release v0.1.13

03 Dec 22:32
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • updated installation procedure to include updating pip
  • added quotes around the editable installation path + options for zsh compatibility
  • change order of installation instructions to prioritize DIPLOMAT-SLEAP

DIPLOMAT Release v0.1.12

02 Dec 00:12
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • added installation troubleshooting procedure to docs
  • added installation verification procedure to docs
  • created a zenodo record for sample data and models.

DIPLOMAT Release v0.1.11

07 Nov 17:05
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • changed re-run icon from a triangle to a pair of circularly-arranged arrows
  • decluttered terminal output during supervised mode

DIPLOMAT Release v0.1.10

16 Oct 22:05
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • implemented the RepairClusters frame pass to identify and resolve clustering errors before fix frames are selected

DIPLOMAT Release v0.1.9

12 Sep 17:48
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • implemented a geometric normalizer for frame score, based on patterns that give approximations to the packing circles / spreading points problem by Szabo/Csendes/Casado/Garcia (Packing Equal Circles in a Square, 2001)
  • using the frame score normalizer, the fix frame of a segment now augments the skeleton weight constant. fix frames with poor separability will have reduced skeleton weight. fix frames with missing limbs will have a minimal (1e-4) skeleton weight. testing indicates this reduces rapid switching to some extent.

DIPLOMAT Release v0.1.8

28 Aug 16:51
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • reworked occlusion logic to support decay, merge current visible and prior occluded probabilities through a maximum.
  • enter state is now being used again; patched a bug that made DIPLOMAT unable to use enter state when frames are missing body parts.
  • patched domination logic to avoid NaN probabilities when complete domination occurs immediately after the enter state is used.
  • applied sidebar radiobutton color fix from interactive mode to tweak mode. UI colors now update when the tracking colors update.

DIPLOMAT Release v0.1.7

14 Jun 20:10
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • sidebar radiobutton label colors now update with video label colors when the colormap is changed in settings menu.

DIPLOMAT Release v0.1.6

31 May 00:06
7042fb3
Compare
Choose a tag to compare

Changes for this version of DIPLOMAT:

  • Fixed a bug in assignment that induced very high rates of swapping between bodies. The Hungarian algorithm is now implemented by linear_sum_assignment from scipy.optimize, defined locally due to dependency issues. This reverts a previous change that implemented the Hungarian algorithm with numba routines.