Computer Vision
# Computer Vision
## Honda ADAS Project:
- Python + OpenCV + TensorFlow
- Vehicle detection
- Real-time (30 FPS)
## Example:
```python
import cv2
img = cv2.imread("car.jpg")
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
cv2.imshow("Car", gray)
cv2.waitKey(0)
```