CV / MobileNet

MobileNetV2

ImageNet classification with configurable Top-K results, browser preview, and REST API access.

2 downloads
Precision
RKNN

Choose the device you're using, the set up guide and documentation will update accordingly.

Getting Started

Deploy
sudo docker run --rm --privileged --net=host \
  -e PYTHONUNBUFFERED=1 -e RKNN_LOG_LEVEL=0 \
  --device /dev/dri/renderD128:/dev/dri/renderD128 \
  -v /proc/device-tree/compatible:/proc/device-tree/compatible:ro \
  ghcr.io/seeed-projects/recomputer-rk-cv/rk3576-mobilenet:latest \
  python3 web_classification.py --model_path model/rk3576_mobilenet_v2.rknn --camera_id -1

REST API

Use the REST API to run inference. Copy the commands below.

Curl
curl http://localhost:8080/v1/chat/completions -d '{
  "model": "mobilenet-v2-rknn",
  "messages": [{"role": "user", "content": "Hello"}]
}'
Python
import requests

resp = requests.post(
    "http://localhost:8080/v1/chat/completions",
    json={"model": "mobilenet-v2-rknn", "messages": [{"role": "user", "content": "Hello"}]},
)
print(resp.json())

Model Details

MobileNetV2 on reComputer RK3576 and RK3588

This page is adapted from the MobileNetV2 READMEs in reComputer-RK-CV. The service runs ImageNet classification with RKNN-Toolkit-Lite2 and provides a Web preview, MJPEG stream, health check, and REST API.

Model information

PropertyValue
TaskImage classification
Input224 x 224 image
OutputConfigurable Top-K ImageNet labels and confidence scores
RK3576 modelmodel/rk3576_mobilenet_v2.rknn
RK3588 modelmodel/rk3588_mobilenet_v2.rknn
Labelsmodel/synset.txt

Run the service

RK3576

bash
sudo docker run --rm --privileged --net=host \
  -e PYTHONUNBUFFERED=1 -e RKNN_LOG_LEVEL=0 \
  --device /dev/dri/renderD128:/dev/dri/renderD128 \
  -v /proc/device-tree/compatible:/proc/device-tree/compatible:ro \
  ghcr.io/seeed-projects/recomputer-rk-cv/rk3576-mobilenet:latest \
  python3 web_classification.py \
  --model_path model/rk3576_mobilenet_v2.rknn --camera_id -1

RK3588

bash
sudo docker run --rm --privileged --net=host \
  -e PYTHONUNBUFFERED=1 -e RKNN_LOG_LEVEL=0 \
  --device /dev/dri/renderD128:/dev/dri/renderD128 \
  -v /proc/device-tree/compatible:/proc/device-tree/compatible:ro \
  ghcr.io/seeed-projects/recomputer-rk-cv/rk3588-mobilenet:latest \
  python3 web_classification.py \
  --model_path model/rk3588_mobilenet_v2.rknn --camera_id -1

Open http://<BOARD_IP>:8000 for the Web page or http://<BOARD_IP>:8000/docs for OpenAPI. Replace --camera_id -1 with a mapped camera ID, or use --video_path video/test.mp4 for the bundled video.

Input modes and startup arguments

The application accepts an uploaded image, an uploaded MP4 frame selected by timestamp, a looping local video, or a camera frame. A local video takes precedence over the camera.

ArgumentDefaultDescription
--model_pathRequiredRKNN model selected for the target SoC.
--camera_id1Camera index; use -1 for upload-only mode.
--video_pathNoneLocal MP4 path. Overrides --camera_id.
--host0.0.0.0FastAPI listen address.
--port8000Service port.

For a USB camera, map the matching device node, for example --device /dev/video0:/dev/video0, and pass --camera_id 0.

REST API

Endpoint: POST /api/models/mobilenet/predict

Multipart fields include file, video, timestamp, conf, and topk. topk accepts values from 1 to 20 and defaults to 5.

bash
curl -X POST "http://<BOARD_IP>:8000/api/models/mobilenet/predict" \
  -F "file=@bell.jpg" -F "topk=5" -F "conf=0.01"

To classify a frame at 5.5 seconds in an MP4:

bash
curl -X POST "http://<BOARD_IP>:8000/api/models/mobilenet/predict" \
  -F "video=@test.mp4" -F "timestamp=5.5" -F "topk=3"

Example response:

json
{
  "success": true,
  "model": "mobilenet",
  "source": "uploaded image",
  "predictions": [
    {"class": "n02123045 tabby, tabby cat", "confidence": 0.91}
  ],
  "image": {"width": 640, "height": 480}
}

GET /api/config returns the global conf_thresh. Update it with POST /api/config and JSON such as {"conf_thresh":0.1}. A request-level conf value overrides the global threshold for that request.

EndpointPurpose
GET /api/healthPlatform, model path, and readiness.
GET /api/video_feedAnnotated MJPEG preview.
POST /api/video/uploadUpload JPG, JPEG, PNG, BMP, or MP4.
POST /api/video/analyzeStart asynchronous analysis by uploaded filename.
GET /api/video/statusProgress and error state.
GET /api/video/listUploaded and generated files.
GET /api/video/download/{filename}Download a generated result.

Model replacement

The preprocessing keeps the BGR channel order required by this model, applies softmax, and filters the Top-K results. A replacement model must preserve the input layout, channel order, normalization, and output format. Update synset.txt when changing the class set. Runtime uploads and outputs are stored under workspace/; set RK_CV_WORKSPACE to use a different directory.

Build locally

Run from the upstream repository root:

bash
docker build -f docker/rk3576/mobilenet.dockerfile \
  -t rk3576-mobilenet:local src/rk3576_mobilenet

docker build -f docker/rk3588/mobilenet.dockerfile \
  -t rk3588-mobilenet:local src/rk3588_mobilenet

Inputs and Outputs

Input: image, video frame, or camera frame. Output: Top-K ImageNet labels and confidence scores.