- qtimlsnpe — SNPE (Qualcomm Neural Processing): Executes models in DLC format on Qualcomm Snapdragon platforms.
- qtimlqnn — QNN (Qualcomm AI Engine Direct): Supports models optimized for QNN.
- qtimltflite — TFLite / Lite-RT: Enables execution of TensorFlow Lite models.
- qtimlonnx — Enables execution of ONNX models.
Run example on device
The example below uses the ResNeXt101 model with theqtimltflite plugin to classify objects in a video stream.

Download Required Files
| File | Download | Save as |
|---|---|---|
| ResNeXt101 W8A8 model | Qualcomm AI Hub — ResNeXt101 | resnext101-w8a8.tflite |
| Sample video | Input video | ai_demo_sample.mp4 |
If any downloaded file is a
.zip archive, extract it on your host machine before copying:
unzip filename.zipCopy files to device
Create the required directories and transfer the downloaded files to your device.
Expected output
The pipeline classifies objects in the video stream in real time. Theqtimltflite plugin automatically reads tensor specifications from the model and propagates them to adjacent plugins — no manual tensor configuration is required.
By default, all QIM SDK inference plugins perform dequantization on output tensors automatically.
Now that we are able to take video input from a data source and do hardware accelerated preprocessing and inferencing on each frame, let’s turn our attention to the post processing of the results and generating meaningful data.