├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── asserts ├── clientInstance.gif ├── clientInstanceLogin.jpg ├── clientInstanceRegister.jpg ├── clientInstanceSplash.jpg ├── crossed.png ├── gitlink&&mmdeploy.png ├── glccWorkflow.png ├── ic_launcher.png ├── logoWithText.png ├── serverInstance.gif └── weixing.jpg ├── bytetrack ├── CMakeLists.txt ├── include │ ├── BYTETracker.h │ ├── STrack.h │ ├── dataType.h │ ├── kalmanFilter.h │ └── lapjv.h └── src │ ├── BYTETracker.cpp │ ├── STrack.cpp │ ├── kalmanFilter.cpp │ ├── lapjv.cpp │ └── utils.cpp ├── configs └── config.json ├── include ├── common.h ├── dealtor.h ├── loguru.hpp └── server.h ├── models └── yolox_tiny_cat_dynamic_fp16_trt │ ├── deploy.json │ ├── detail.json │ ├── end2end.engine │ ├── end2end.onnx │ ├── output_pytorch.jpg │ ├── output_tensorrt.jpg │ └── pipeline.json └── src ├── common.cpp ├── dealtor.cpp ├── loguru.cpp ├── main.cpp └── server.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/README.md -------------------------------------------------------------------------------- /asserts/clientInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/clientInstance.gif -------------------------------------------------------------------------------- /asserts/clientInstanceLogin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/clientInstanceLogin.jpg -------------------------------------------------------------------------------- /asserts/clientInstanceRegister.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/clientInstanceRegister.jpg -------------------------------------------------------------------------------- /asserts/clientInstanceSplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/clientInstanceSplash.jpg -------------------------------------------------------------------------------- /asserts/crossed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/crossed.png -------------------------------------------------------------------------------- /asserts/gitlink&&mmdeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/gitlink&&mmdeploy.png -------------------------------------------------------------------------------- /asserts/glccWorkflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/glccWorkflow.png -------------------------------------------------------------------------------- /asserts/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/ic_launcher.png -------------------------------------------------------------------------------- /asserts/logoWithText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/logoWithText.png -------------------------------------------------------------------------------- /asserts/serverInstance.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/serverInstance.gif -------------------------------------------------------------------------------- /asserts/weixing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/asserts/weixing.jpg -------------------------------------------------------------------------------- /bytetrack/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/CMakeLists.txt -------------------------------------------------------------------------------- /bytetrack/include/BYTETracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/include/BYTETracker.h -------------------------------------------------------------------------------- /bytetrack/include/STrack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/include/STrack.h -------------------------------------------------------------------------------- /bytetrack/include/dataType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/include/dataType.h -------------------------------------------------------------------------------- /bytetrack/include/kalmanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/include/kalmanFilter.h -------------------------------------------------------------------------------- /bytetrack/include/lapjv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/include/lapjv.h -------------------------------------------------------------------------------- /bytetrack/src/BYTETracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/src/BYTETracker.cpp -------------------------------------------------------------------------------- /bytetrack/src/STrack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/src/STrack.cpp -------------------------------------------------------------------------------- /bytetrack/src/kalmanFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/src/kalmanFilter.cpp -------------------------------------------------------------------------------- /bytetrack/src/lapjv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/src/lapjv.cpp -------------------------------------------------------------------------------- /bytetrack/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/bytetrack/src/utils.cpp -------------------------------------------------------------------------------- /configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/configs/config.json -------------------------------------------------------------------------------- /include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/include/common.h -------------------------------------------------------------------------------- /include/dealtor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/include/dealtor.h -------------------------------------------------------------------------------- /include/loguru.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/include/loguru.hpp -------------------------------------------------------------------------------- /include/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/include/server.h -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/deploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/deploy.json -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/detail.json -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/end2end.engine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/end2end.engine -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/end2end.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/end2end.onnx -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/output_pytorch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/output_pytorch.jpg -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/output_tensorrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/output_tensorrt.jpg -------------------------------------------------------------------------------- /models/yolox_tiny_cat_dynamic_fp16_trt/pipeline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/models/yolox_tiny_cat_dynamic_fp16_trt/pipeline.json -------------------------------------------------------------------------------- /src/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/src/common.cpp -------------------------------------------------------------------------------- /src/dealtor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/src/dealtor.cpp -------------------------------------------------------------------------------- /src/loguru.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/src/loguru.cpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DDGRCF/GLCC_Server/HEAD/src/server.cpp --------------------------------------------------------------------------------