Skip to content

v0.3.0

Compare
Choose a tag to compare
@leeping-ng leeping-ng released this 12 Jul 07:50
· 3272 commits to dev since this release
bf88ccb

Changelog for v0.3.0

Process

  • Update code and docs on modifying node configurations in run_config.yml to follow typical yaml convention without requiring a - in front
# Updated
- input.live:
    resize:
	  do_resizing: True

# Previous
- input.live:
  - resize:
	do_resizing: True

Features

  • Add model.hrnet node for pose estimation
  • Add output.csv_writer node
  • Allow folder name for custom node source code to be customised using -custom_folder_name flag
  • Allow video resolution to be changed in configs for input.live and input.recorded
  • Allow live feed from input.live to be saved as a recorded video after inferencing
  • Add ["all"] input type that allows nodes to access all variables in data pool if used
  • Add ["pipeline_end"] output type that returns True when the pipeline has ended for input.live, input.recorded and output.screen nodes
  • Add ["none"] input/output type for nodes that do not require any input/output
  • Show percentage progress of inference on recorded videos using input.recorded
  • Show updates of number of processed frames using input.live
  • Append timestamp to output filenames

Deprecations and Removals

  • Remove ["end"] input/output type - this is replaced by ["pipeline_end"]
  • Remove ["source"] input type - this is replaced by ["none"]
  • draw nodes return ["none"] instead of ["img"] types

Bug Fixes

  • Update nested configs in run_config.yml without overwriting key-value pairs of the same parent