You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@SalilVishnuKapur
Can't figure out where this variable is defined in the Pointfeatures.py script, but getting this error:
Traceback (most recent call last):
File "PointFeatures.py", line 163, in <module>
arrRfH = [np.mean(cvRfHierarchyT[0]), np.mean(cvRfHierarchyT[1]), np.mean(cvRfHierarchyT[2]), np.mean(cvRfHierarchyT[3]), np.mean(cvRfHierarchyT[4]), np.mean(cvRfHierarchyT[5])]
NameError: name 'cvRfHierarchyT' is not defined
The text was updated successfully, but these errors were encountered:
So it appears cvRfHierarchyT is used before its declaration?
$python PointFeatures.py
Traceback (most recent call last):
File "PointFeatures.py", line 163, in <module>
arrRfH = [np.mean(cvRfHierarchyT[0]), np.mean(cvRfHierarchyT[1]), np.mean(cvRfHierarchyT[2]), np.mean(cvRfHierarchyT[3]), np.mean(cvRfHierarchyT[4]), np.mean(cvRfHierarchyT[5])]
NameError: name 'cvRfHierarchyT' is not defined
I believe this bug came because of the more class oriented project modification that I had planned to do. But unfortunately, I couldn't take out time to finish that. But in few days I will surely get this done with even better developer documentation.
@SalilVishnuKapur
Can't figure out where this variable is defined in the Pointfeatures.py script, but getting this error:
The text was updated successfully, but these errors were encountered: