Releases: rly/ndx-pose
Releases · rly/ndx-pose
0.2.1
0.2.0
Major changes
- Added support for storing training data in the new
PoseTraining
neurodata type and other new types.
@roomrys, @CBroz1, @rly, @talmo, @eberrigan (#7, #21, #24) - Deprecated the
nodes
andedges
constructor arguments and fields from thePoseEstimation
neurodata type to
support linking to the sameSkeleton
object from aPoseEstimation
object and pose training data.
@rly (#7, #24, #33)- Data from
ndx-pose
versions before0.2.0
can still be read; a temporarySkeleton
object with name
"subject" will be created and thenodes
andedges
fields will be populated with the data from
thePoseEstimation
object. - Instead of using the
nodes
andedges
fields, you should now use aSkeleton
object:- Create a
Skeleton
object with those nodes and edges. - Create a
Skeletons
container object and pass theSkeleton
object to that. - Add the
Skeletons
object to your "behavior" processing module (at the same level as thePoseEstimation
object). - Pass the
Skeleton
object to thePoseEstimation
constructor.
- Create a
- Data from
- Added ability to link a
PoseEstimation
object 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,
aDeprecationWarning
will be raised. @rly (#33)
Minor changes
- Made
PoseEstimation.confidence
optional. @h-mayorquin (#11)