-
Notifications
You must be signed in to change notification settings - Fork 306
New issue
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
Model used #1
Comments
ResNet50-R-FCN for traffic lights detection in Rectifier. In Recognizer for any traffic light detected in Rectifier, an AlexNet-like CNN(5 convs+2fcs) is used to classify traffic light types/colors. |
And I am too confused about their lane prediction step . From what all I understand going through the code is , they use CNN segmentation and pass road patches for lane detection and then use curve fitting to find and extend lane line. Any clarities on lane detection and prediction steps? |
Actually, CNN segmentation only be used for obstacle segmentation in obstacle perception. Any lane detection and prediction in prediction, planning modules are achieved through querying hdmap. Hdmap stores all lane informations, such as lane id, lane accumulated sum length(accumulated_s), neighbor lanes, left boundary, right boundary. A lane is There is a example in prediction module. If we hope to predict obstacle's trajectory in the future(e.g. next 100m), then we can do follow steps: So any lanes detection, extend or prediction depend on hdmap tightly. |
Thank you this is really helpful! |
https://www.youtube.com/watch?v=jiZhSIrmODk&t=7s , have you gone through this video from recent apollo meetup, they explain how the deep net is used for Lane detection. Any thoughts? |
Thank you very much for you remind. I have realized some improvements in version 2.5, almost all changes occur in the perception module. Now I am reading the planning module code, after finish this i'll review the perception module and update my repository. I am very happy to share my reading notes with you at that moment. |
Which model is used for traffic light perception ?
The text was updated successfully, but these errors were encountered: