├── .gitignore ├── README.md ├── config └── config.yaml ├── images ├── base_image_santos_dummont_airport.png ├── demo-app-streamlit.png ├── poc.gif └── sample-banner.png ├── notebooks ├── 00_initial_setup.ipynb ├── 01_perspective_projection.ipynb └── 02_object_detection.ipynb ├── poetry.lock ├── pyproject.toml ├── src ├── __init__.py ├── main.py ├── path.py ├── speed_estimator.py ├── streamlit │ └── app.py ├── utils.py ├── video_processor.py └── view_transformer.py └── tests ├── __init__.py ├── test_speed_estimator.py ├── test_video_processor.py └── test_view_transformer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/config/config.yaml -------------------------------------------------------------------------------- /images/base_image_santos_dummont_airport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/images/base_image_santos_dummont_airport.png -------------------------------------------------------------------------------- /images/demo-app-streamlit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/images/demo-app-streamlit.png -------------------------------------------------------------------------------- /images/poc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/images/poc.gif -------------------------------------------------------------------------------- /images/sample-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/images/sample-banner.png -------------------------------------------------------------------------------- /notebooks/00_initial_setup.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/notebooks/00_initial_setup.ipynb -------------------------------------------------------------------------------- /notebooks/01_perspective_projection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/notebooks/01_perspective_projection.ipynb -------------------------------------------------------------------------------- /notebooks/02_object_detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/notebooks/02_object_detection.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/main.py -------------------------------------------------------------------------------- /src/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/path.py -------------------------------------------------------------------------------- /src/speed_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/speed_estimator.py -------------------------------------------------------------------------------- /src/streamlit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/streamlit/app.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/video_processor.py -------------------------------------------------------------------------------- /src/view_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/src/view_transformer.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_speed_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/tests/test_speed_estimator.py -------------------------------------------------------------------------------- /tests/test_video_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/tests/test_video_processor.py -------------------------------------------------------------------------------- /tests/test_view_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosfab/aircraft-takeoff-speed-estimation/HEAD/tests/test_view_transformer.py --------------------------------------------------------------------------------