├── .gitignore ├── Atlas ├── acllite │ ├── README.md │ ├── README_CN.md │ ├── __init__.py │ ├── acllite_image.py │ ├── acllite_imageproc.py │ ├── acllite_logger.py │ ├── acllite_model.py │ ├── acllite_resource.py │ ├── acllite_utils.py │ ├── cameracapture.py │ ├── constants.py │ ├── dvpp_vdec.py │ ├── presenteragent │ │ ├── __init__.py │ │ ├── presenter_agent.py │ │ ├── presenter_channel.py │ │ ├── presenter_datatype.py │ │ ├── presenter_message.proto │ │ ├── presenter_message.py │ │ ├── presenter_message_pb2.py │ │ └── socket_client.py │ └── videocapture.py ├── config_atlas.yaml ├── run_client.py ├── test_communication.py └── test_dummy_model.py ├── LICENSE ├── README.md ├── ckpt └── .keep ├── gif └── video.gif ├── learning ├── dataset.py └── model.py ├── scripts ├── config.yaml ├── controller.py ├── export_onnx.py ├── run_local.py ├── run_server.py └── test_dummy_model.py ├── simulator ├── __init__.py ├── official_code.py └── sensor_manager.py └── utils ├── __init__.py └── navigator_sim.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/.gitignore -------------------------------------------------------------------------------- /Atlas/acllite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/README.md -------------------------------------------------------------------------------- /Atlas/acllite/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/README_CN.md -------------------------------------------------------------------------------- /Atlas/acllite/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Atlas/acllite/acllite_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_image.py -------------------------------------------------------------------------------- /Atlas/acllite/acllite_imageproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_imageproc.py -------------------------------------------------------------------------------- /Atlas/acllite/acllite_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_logger.py -------------------------------------------------------------------------------- /Atlas/acllite/acllite_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_model.py -------------------------------------------------------------------------------- /Atlas/acllite/acllite_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_resource.py -------------------------------------------------------------------------------- /Atlas/acllite/acllite_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/acllite_utils.py -------------------------------------------------------------------------------- /Atlas/acllite/cameracapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/cameracapture.py -------------------------------------------------------------------------------- /Atlas/acllite/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/constants.py -------------------------------------------------------------------------------- /Atlas/acllite/dvpp_vdec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/dvpp_vdec.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_agent.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_channel.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_datatype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_datatype.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_message.proto -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_message.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/presenter_message_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/presenter_message_pb2.py -------------------------------------------------------------------------------- /Atlas/acllite/presenteragent/socket_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/presenteragent/socket_client.py -------------------------------------------------------------------------------- /Atlas/acllite/videocapture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/acllite/videocapture.py -------------------------------------------------------------------------------- /Atlas/config_atlas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/config_atlas.yaml -------------------------------------------------------------------------------- /Atlas/run_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/run_client.py -------------------------------------------------------------------------------- /Atlas/test_communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/test_communication.py -------------------------------------------------------------------------------- /Atlas/test_dummy_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/Atlas/test_dummy_model.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/README.md -------------------------------------------------------------------------------- /ckpt/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gif/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/gif/video.gif -------------------------------------------------------------------------------- /learning/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/learning/dataset.py -------------------------------------------------------------------------------- /learning/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/learning/model.py -------------------------------------------------------------------------------- /scripts/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/config.yaml -------------------------------------------------------------------------------- /scripts/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/controller.py -------------------------------------------------------------------------------- /scripts/export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/export_onnx.py -------------------------------------------------------------------------------- /scripts/run_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/run_local.py -------------------------------------------------------------------------------- /scripts/run_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/run_server.py -------------------------------------------------------------------------------- /scripts/test_dummy_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/scripts/test_dummy_model.py -------------------------------------------------------------------------------- /simulator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/simulator/__init__.py -------------------------------------------------------------------------------- /simulator/official_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/simulator/official_code.py -------------------------------------------------------------------------------- /simulator/sensor_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/simulator/sensor_manager.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/navigator_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IamWangYunKai/SimpleE2E/HEAD/utils/navigator_sim.py --------------------------------------------------------------------------------