We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear author, I got confused about func "SemKITTI2train_single" about "label-1". what does the function want to do?
def SemKITTI2train(label): if isinstance(label, list): return [SemKITTI2train_single(a) for a in label] else: return SemKITTI2train_single(label)
def SemKITTI2train_single(label): return label - 1 # uint8 trick
The text was updated successfully, but these errors were encountered:
SemanticKITTI uses label 0 as the 'unlabeled' class.
PolarSeg/semantic-kitti.yaml
Lines 144 to 164 in 3531f15
Sorry, something went wrong.
No branches or pull requests
Dear author,
I got confused about func "SemKITTI2train_single" about "label-1".
what does the function want to do?
def SemKITTI2train(label):
if isinstance(label, list):
return [SemKITTI2train_single(a) for a in label]
else:
return SemKITTI2train_single(label)
def SemKITTI2train_single(label):
return label - 1 # uint8 trick
The text was updated successfully, but these errors were encountered: