dongkwonjin / RVLD

Official code for "Recursive Video Lane Detection", ICCV 2023
Apache License 2.0
71 stars 7 forks source link

Question about the evaluation metrics continuous_cross_iou #11

Open Ian0926 opened 5 months ago

Ian0926 commented 5 months ago

Hello, thanks for your great work. I have some questions about the function continuous_cross_iou. In the function continuous_cross_iou, the following code is used: image = Polygon([(0, 0), (0, h - 1), (w - 1, h - 1), (w - 1, 0)]). What is the effect of this line? Can I treat this line as the concept of optical flow?

dongkwonjin commented 4 months ago

We just employed the evaluation codes from the LaneATT, which is an image-based lane detector. So, we don't know much about the meaning of the line that you questioned in detail.

Below is the website of the LaneATT.

https://github.com/lucastabelini/LaneATT

Thank you for your attention.