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
hello pierluigiferrari:
i ran your code and got a such mistake
img1[:(img1.shape[0]*(1-partial)),:] = 0
TypeError: slice indices must be integers or None or have an index method
so i change it to:
img1[:int(img1.shape[0]*(1-partial)),:] = 0
now there is no mistake ,and it performed well on the challenge_video,but it failed to detect the lane lines in some frames in the harder_challenge_video.
Have a nice day!
The text was updated successfully, but these errors were encountered:
hello pierluigiferrari:
i ran your code and got a such mistake
img1[:(img1.shape[0]*(1-partial)),:] = 0
TypeError: slice indices must be integers or None or have an index method
so i change it to:
img1[:int(img1.shape[0]*(1-partial)),:] = 0
now there is no mistake ,and it performed well on the challenge_video,but it failed to detect the lane lines in some frames in the harder_challenge_video.
Have a nice day!
The text was updated successfully, but these errors were encountered: