pyCGM
pyCGM copied to clipboard
pyCGM_Single/pycgmClusters.py imports and uses a non-existent function
The file pycgmClusters.py contains one function, calcFramesClusters which imports a function from clusterCalc.py named groupInClustDict that does not exist.
On line 15, the function is imported:
from .clusterCalc import targetName, getMarkerLocation, targetDict, groupInClustDict ,getStaticTransform
On line 18, the function is used:
clusters = groupInClustDict()
clusterCalc.py is also imported in Pipelines.py, but only using existing functions:
from .clusterCalc import targetName,getMarkerLocation,segment_dict,target_dict,getStaticTransform
@niravkin What was the resolution here?