diff --git a/automobile/detect-lane-by-lidar-point-cloud/LaneDetector.m b/automobile/detect-lane-by-lidar-point-cloud/LaneDetector.m index af0fe2c18a..0bb3392427 100644 --- a/automobile/detect-lane-by-lidar-point-cloud/LaneDetector.m +++ b/automobile/detect-lane-by-lidar-point-cloud/LaneDetector.m @@ -458,7 +458,7 @@ nonGround = select(pc, outliers); [labels, numClusters] = pcsegdist(nonGround, 1); - % Remove all the outlier from the ground occuring because of possible obstacles + % Remove all the outlier from the ground occurring because of possible obstacles for i = 1:numClusters tmp = nonGround.Location(labels == i, :); xmin = min(tmp(:, 1));