├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE.md ├── README.md ├── benchmarks └── bench.py ├── camera └── __init__.py ├── docs ├── NVIDIA_CLA_v1.0.1.pdf ├── README_images │ ├── pringle_kirkland.gif │ └── ruler.gif ├── images │ ├── Broadway.jpg │ ├── LAX-wayfinding-signage.jpg │ ├── LAX-wayfinding-terminal-signage.jpg │ ├── NYC_intersection.jpg │ ├── airport_amsterdam_signs.jpg │ ├── airport_precluded_signs.jpg │ ├── ariport_inside_signs.jpg │ ├── foods_shelf_close_up.jpg │ ├── storm_nyc.jpg │ ├── street_sign_with_shadwo.jpg │ └── streetname-BANNER-2.jpg └── labeled-images │ ├── labeled_Broadway.jpg │ ├── labeled_LAX-wayfinding-signage.jpg │ ├── labeled_LAX-wayfinding-terminal-signage.jpg │ ├── labeled_NYC_intersection.jpg │ ├── labeled_airport_amsterdam_signs.jpg │ ├── labeled_airport_precluded_signs.jpg │ ├── labeled_ariport_inside_signs.jpg │ ├── labeled_foods_shelf_close_up.jpg │ ├── labeled_storm_nyc.jpg │ ├── labeled_street_sign_with_shadwo.jpg │ └── labeled_streetname-BANNER-2.jpg ├── example_camera.py ├── example_images.py ├── models └── .gitkeep ├── requirements.txt └── video_capture.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/benchmarks/bench.py -------------------------------------------------------------------------------- /camera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/camera/__init__.py -------------------------------------------------------------------------------- /docs/NVIDIA_CLA_v1.0.1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/NVIDIA_CLA_v1.0.1.pdf -------------------------------------------------------------------------------- /docs/README_images/pringle_kirkland.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/README_images/pringle_kirkland.gif -------------------------------------------------------------------------------- /docs/README_images/ruler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/README_images/ruler.gif -------------------------------------------------------------------------------- /docs/images/Broadway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/Broadway.jpg -------------------------------------------------------------------------------- /docs/images/LAX-wayfinding-signage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/LAX-wayfinding-signage.jpg -------------------------------------------------------------------------------- /docs/images/LAX-wayfinding-terminal-signage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/LAX-wayfinding-terminal-signage.jpg -------------------------------------------------------------------------------- /docs/images/NYC_intersection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/NYC_intersection.jpg -------------------------------------------------------------------------------- /docs/images/airport_amsterdam_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/airport_amsterdam_signs.jpg -------------------------------------------------------------------------------- /docs/images/airport_precluded_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/airport_precluded_signs.jpg -------------------------------------------------------------------------------- /docs/images/ariport_inside_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/ariport_inside_signs.jpg -------------------------------------------------------------------------------- /docs/images/foods_shelf_close_up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/foods_shelf_close_up.jpg -------------------------------------------------------------------------------- /docs/images/storm_nyc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/storm_nyc.jpg -------------------------------------------------------------------------------- /docs/images/street_sign_with_shadwo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/street_sign_with_shadwo.jpg -------------------------------------------------------------------------------- /docs/images/streetname-BANNER-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/images/streetname-BANNER-2.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_Broadway.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_Broadway.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_LAX-wayfinding-signage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_LAX-wayfinding-signage.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_LAX-wayfinding-terminal-signage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_LAX-wayfinding-terminal-signage.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_NYC_intersection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_NYC_intersection.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_airport_amsterdam_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_airport_amsterdam_signs.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_airport_precluded_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_airport_precluded_signs.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_ariport_inside_signs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_ariport_inside_signs.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_foods_shelf_close_up.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_foods_shelf_close_up.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_storm_nyc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_storm_nyc.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_street_sign_with_shadwo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_street_sign_with_shadwo.jpg -------------------------------------------------------------------------------- /docs/labeled-images/labeled_streetname-BANNER-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/docs/labeled-images/labeled_streetname-BANNER-2.jpg -------------------------------------------------------------------------------- /example_camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/example_camera.py -------------------------------------------------------------------------------- /example_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/example_images.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /video_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NVIDIA-AI-IOT/scene-text-recognition/HEAD/video_capture.py --------------------------------------------------------------------------------