MCPcopy Index your code
hub / github.com/DeepLabCut/DeepLabCut / remove_joint

Method remove_joint

deeplabcut/core/inferenceutils.py:195–201  ·  view source on GitHub ↗
(self, joint)

Source from the content-addressed store, hash-verified

193 return True
194
195 def remove_joint(self, joint):
196 if joint.label not in self._visible:
197 return False
198 self.data[joint.label] = np.nan
199 self._visible.remove(joint.label)
200 self._idx.remove(joint.idx)
201 return True
202
203 def add_link(self, link, store_dict=False):
204 if store_dict:

Callers 2

test_assemblyFunction · 0.95
_assembleMethod · 0.80

Calls 1

removeMethod · 0.80

Tested by 1

test_assemblyFunction · 0.76