On Premise IP Camera analysis
Developer Architecture Overview: Camera Input to Cloud Inference with On-Prem App
Last updated
Developer Architecture Overview: Camera Input to Cloud Inference with On-Prem App
Last updated
This document outlines the architecture for applications that use local IP camera input, process frames on-premises, and send selected data to the cloud for inference and alerting. This design is optimized for reliability, user control, and extensibility in real-world deployments.
Role: Provides a real-time video feed.
Protocol Support: RTSP or HTTP streams.
Deployment Note: Can be any standard IP camera compatible with the network environment.
A lightweight local application deployed on a local machine (e.g., embedded PC, NUC, or industrial gateway) with three primary modules:
a. App Core
Manages communication between all subsystems.
Handles application lifecycle, settings, and local network services.
Serves as the bridge to cloud and notification layers.
b. Frame Capture & Sampling Logic
Connects to the IP camera stream.
Extracts frames at regular intervals or based on motion/logic triggers.
Prepares images for secure transmission to the cloud.
c. Local Dashboard
Web- or Electron-based UI accessible on the local network.
Displays real-time camera feed (optionally), recent detections, logs, and configuration tools.
Allows for manual review and flagging of archived images.
Role: Processes each sampled image using a selected EyePop.ai model.
Security: Images are never stored server-side—processing is stateless.
Response: Returns structured JSON with inference results (e.g., bounding boxes, classifications, tags).
Integration Options: Twilio (SMS), SendGrid (email), Slack, Webhooks, or any third-party service.
Trigger: Upon receiving actionable inference results (e.g., person detected after hours), the app sends alert payloads to cloud notification services.
Stores selected images locally for:
Regulatory compliance or auditing
Dataset refinement and future model training
Manual review by operators
Integrated with the Local Dashboard for search, tagging, and export.
Capture: The IP camera sends a continuous stream to the local app.
Sampling: The app extracts and filters frames using internal logic.
Inference: Sampled frames are sent to EyePop.ai for analysis.
Result Handling: Inference results are used to trigger alerts and log events.
User Interaction: A dashboard provides visibility, settings control, and image review.
Archiving: Optionally, images are stored locally based on rules or user actions.
Low Latency Local Interface: Dashboard and logic run on-site.
Cloud Offload: Heavy inference is handled remotely with zero storage overhead.
Flexible Notification: Pluggable alerting channels tailored to use case.
Audit Ready: Image archive supports regulated environments or continuous learning loops.