Releases: rly/ndx-pose
Releases · rly/ndx-pose
0.2.2
The 0.2.0 schema has not changed, but the surrounding infrastructure and Python API has changes:
Bug fixes
- Treat deprecation warnings as warnings instead of errors. @pauladkisson (#41)
Minor updates
0.2.1
0.2.0
Major changes
- Added support for storing training data in the new
PoseTrainingneurodata type and other new types.
@roomrys, @CBroz1, @rly, @talmo, @eberrigan (#7, #21, #24) - Deprecated the
nodesandedgesconstructor arguments and fields from thePoseEstimationneurodata type to
support linking to the sameSkeletonobject from aPoseEstimationobject and pose training data.
@rly (#7, #24, #33)- Data from
ndx-poseversions before0.2.0can still be read; a temporarySkeletonobject with name
"subject" will be created and thenodesandedgesfields will be populated with the data from
thePoseEstimationobject. - Instead of using the
nodesandedgesfields, you should now use aSkeletonobject:- Create a
Skeletonobject with those nodes and edges. - Create a
Skeletonscontainer object and pass theSkeletonobject to that. - Add the
Skeletonsobject to your "behavior" processing module (at the same level as thePoseEstimationobject). - Pass the
Skeletonobject to thePoseEstimationconstructor.
- Create a
- Data from
- Added ability to link a
PoseEstimationobject to one or more camera devices. If the number of original videos,
labeled videos, or dimensions does not equal the number of camera devices when creating the object not from a file,
aDeprecationWarningwill be raised. @rly (#33)
Minor changes
- Made
PoseEstimation.confidenceoptional. @h-mayorquin (#11)