First of many thanks for this @potrgani its awesome! 

However yes, i got the SAME coz for some “unknow” reason its pulled the Intel/AMD Docker Image NOT Arm64 for RPI?! 
~ # docker run -d --name gesture-container ghcr.io/potrgani/handgesturerecognition:1.1.3
WARNING: The requested image's platform (linux/amd64) does not match the detected host platform (linux/arm64/v8) and no specific platform was requested
d840dde3e4b1b19ed17dffd59e8cc006c723f96307ab072f7f5efd26b0683d7a
Looks like needs to Build Yourself… 
@potrgani please could You fix that! 
git clone https://github.com/potrgani/hand-gesture-recognition-ha-addon
cd hand-gesture-recognition-ha-addon
docker build --platform linux/arm64 -t gesture-recognition .
docker run -d --name gesture-container gesture-recognition
BUT i build it on my another RPI400 which i have USB Webcam connected & streaming via motion, however it was looking for /data/ folder which You have on HA/HAOS but my HAOS is running on another RPI5 
@potrgani would be possible to check if there is NO /data/ then it NOT running on HA/HAOS please… 
Anyway now is working on my RPI400 with some work-around its really cool! 
This is my options.json
{
"rtsp_url": "CAMERA-URL",
"mqtt_host": "HAOS-IP",
"mqtt_port": 1883,
"mqtt_username": "***",
"mqtt_password": "***",
"mqtt_topic": "hand_gesture_status",
"minHandDetectionConfidence": 0.3,
"minHandPresenceConfidence": 0.3,
"minTrackingConfidence": 0.3,
"frameWidth": 1280,
"frameHeight": 720,
"reset_hand_status_time": 3
}
2025-05-26 21:15:25,235 - INFO - Victory
2025-05-26 21:15:38,444 - INFO - Open_Palm
2025-05-26 21:15:50,321 - INFO - None
2025-05-26 21:16:20,452 - INFO - None
2025-05-26 21:16:25,338 - INFO - Open_Palm
2025-05-26 21:16:27,018 - INFO - Victory
2025-05-26 21:16:27,855 - INFO - None
2025-05-26 21:16:28,695 - INFO - Thumb_Up
2025-05-26 21:16:39,785 - INFO - Pointing_Up
2025-05-26 21:16:46,419 - INFO - None
Then I was a bit struggling to add to HA/HAOS coz i can see in MQTT mosquito Broker when listing to topic “hand_gesture_status” but i can NOT add as Sensor & its NOT Discoverable automatically… 
This is the FIX needs to run inside HA/HAHOS, to add as Sensor via MQTT now i can see it under MQTT 
mosquitto_pub -h <HAOS-IP> -t homeassistant/sensor/gesture/config -r -m '{
"name": "Hand Gesture Recognition Sensor",
"state_topic": "hand_gesture_status",
"unique_id": "gesture_sensor_001",
"device": {
"identifiers": ["gesture_recognition"],
"name": "Hand Gesture Recognition",
"model": "Hand Gesture Recognition HA-Addon",
"manufacturer": "Potrgani"
},
"retain": true
}'
OR to delete
mosquitto_pub -h <HAOS-IP> -t homeassistant/sensor/gesture/config -r -m ''