├── CODEOWNERS ├── LICENSE ├── README.md └── sdk ├── Dockerfile.aarch64 ├── Dockerfile.armv7hf ├── checksums ├── grpcio ├── grpcio-arm64 ├── scipy └── scipy-arm64 ├── hooks ├── build └── pre_build ├── tfproto └── Makefile ├── tfserving ├── install-tf.sh ├── setup.py ├── tf_proto_utils.py └── tfprotoutils.py └── vdoproto ├── setup.py ├── vdo_proto_utils.py └── videocapture.proto /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @AxisCommunications/acap-computer-vision-sdk-owners 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/README.md -------------------------------------------------------------------------------- /sdk/Dockerfile.aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/Dockerfile.aarch64 -------------------------------------------------------------------------------- /sdk/Dockerfile.armv7hf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/Dockerfile.armv7hf -------------------------------------------------------------------------------- /sdk/checksums/grpcio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/checksums/grpcio -------------------------------------------------------------------------------- /sdk/checksums/grpcio-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/checksums/grpcio-arm64 -------------------------------------------------------------------------------- /sdk/checksums/scipy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/checksums/scipy -------------------------------------------------------------------------------- /sdk/checksums/scipy-arm64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/checksums/scipy-arm64 -------------------------------------------------------------------------------- /sdk/hooks/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/hooks/build -------------------------------------------------------------------------------- /sdk/hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/hooks/pre_build -------------------------------------------------------------------------------- /sdk/tfproto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/tfproto/Makefile -------------------------------------------------------------------------------- /sdk/tfserving/install-tf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/tfserving/install-tf.sh -------------------------------------------------------------------------------- /sdk/tfserving/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/tfserving/setup.py -------------------------------------------------------------------------------- /sdk/tfserving/tf_proto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/tfserving/tf_proto_utils.py -------------------------------------------------------------------------------- /sdk/tfserving/tfprotoutils.py: -------------------------------------------------------------------------------- 1 | tf_proto_utils.py -------------------------------------------------------------------------------- /sdk/vdoproto/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/vdoproto/setup.py -------------------------------------------------------------------------------- /sdk/vdoproto/vdo_proto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/vdoproto/vdo_proto_utils.py -------------------------------------------------------------------------------- /sdk/vdoproto/videocapture.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxisCommunications/acap-computer-vision-sdk/HEAD/sdk/vdoproto/videocapture.proto --------------------------------------------------------------------------------