- Notifications
You must be signed in to change notification settings - Fork1
This repository contains the code to detect lanes using Hough transform
License
noobsiecoder/lane-detection
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
This project is developed as the final project for the EECE5639 Computer Vision course, Spring 2024, at Northeastern University. The project focuses on detecting lanes in road images and videos using the Hough Transform algorithm. This README provides an overview of the project, its contents, and instructions for usage.
- Abhishek Sriram
- Bhanu Prasad AJ
- Xiatao Wu
- Yinkai Liu
Lane detection is a crucial task in computer vision, especially in the domain of autonomous vehicles and advanced driver-assistance systems (ADAS). The Hough Transform is a widely used technique for detecting lines in images. In this project, we implement lane detection using the Hough Transform algorithm in both Python and C++.
lane_detection_project/│├── data/│ ├── videos/│ │ ├── video1.mp4│ │ ├── video2.mp4│ │ └── video3.mp4│ └── ...│├── include/│ ├── greet.h│ └── ...│├── src/│ ├── cpp/│ │ ├── greet.cc│ │ └── ...│ ├── python/│ │ ├── greet.py│ │ └── ...│ └── ...│├── tests/│ ├── greet.cc│ └── ...│└── .gitignore└── CMakeLists.txt└── LICENSE└── README.md# Clone the repository to your local machine git clone https://gitlab.com/sriram.ab/lane-detection.git# check g++ version (only gcc) g++ --version
# in the root directory mkdir buildcd build# initializing gtests inside build/ cmake .. make# running tests ./<TestExecutable> --gtest_filter=<TestSuite.TestCase>
This project is licensed under theMIT License.
We would like to express our gratitude to our instructor and teaching assistants for their guidance and support throughout the course.
About
This repository contains the code to detect lanes using Hough transform
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Contributors2
Uh oh!
There was an error while loading.Please reload this page.