Overview
Transform your legacy infrastructure with this retrofit IoT solution that digitizes analog meters using webcams and advanced AI image analysis. Designed for equipment without built-in connectivity, this system reads pressure gauges, thermometers, and flow meters by simply pointing a camera at the dial. The AI agent interprets the needle position with high precision, converting it into real-time digital data. This allows you to upgrade existing assets into smart devices without costly replacements or disruptive installation work.
The system delivers immediate value by revolutionizing inspection workflows. It automates the digitization of data that previously required manual visual checks and handwritten records, drastically cutting labor costs and removing human error. With 24/7 data acquisition, you can achieve reliable remote monitoring and significantly reduce the workload on your field teams.
Unlock the power of data for predictive maintenance and trend management. By detecting anomalies early, you can prevent unexpected downtime and equipment failure. Scalable and compatible with both edge computing and cloud environments, this solution is the perfect entry point for accelerating Digital Transformation (DX) in your factory.
Highlights
- Enables easy IoT retrofitting by simply pointing a webcam at existing analog meters, without the need for large-scale construction.
- Utilizes the latest AI image analysis technology to automatically read values, significantly reducing the operational burden of daily patrol inspections and automated meter readings.
- Digitizes analog data to enhance equipment visibility, enabling real-time remote monitoring and predictive maintenance applications.
Details
Introducing multi-product solutions
You can now purchase comprehensive solutions tailored to use cases and industries.
Features and programs
Financing for AWS Marketplace purchases
Pricing
Vendor refund policy
How can we make this page better?
Legal
Vendor terms and conditions
Content disclaimer
Delivery details
New delivery option 1
- Amazon Bedrock AgentCore
Container image
Containers are lightweight, portable execution environments that wrap server application software in a filesystem that includes everything it needs to run. Container applications run on supported container runtimes and orchestration services, such as Amazon Elastic Container Service (Amazon ECS) or Amazon Elastic Kubernetes Service (Amazon EKS). Both eliminate the need for you to install and operate your own container orchestration software by managing and scheduling containers on a scalable cluster of virtual machines.
Version release notes
first release
Additional details
Usage instructions
Prerequisites
- An active AWS account
- AWS CLI installed and configured
- Permissions to create CloudFormation stacks (CAPABILITY_NAMED_IAM is required)
- Access enabled for Amazon Bedrock (AgentCore Runtime)
- Access enabled for S3 Tables
- Supported AWS Region: us-east-1
Deployment Steps
1. Deploy the Meter Reading AI Agent stack
Create the stack by specifying the CloudFormation template URL.
aws cloudformation create-stack \ --stack-name meter-reading-agent-stack \ --template-url <https://cm-seller-resources.s3.us-east-1.amazonaws.com/meter-reading-ai-agent/cfn/reader-agent.yaml> \ --capabilities CAPABILITY_NAMED_IAM \ --region us-east-12. Confirm stack creation
Wait until the status becomes CREATE_COMPLETE.
Configuration
1. Register meter reading instructions
Create a Markdown file describing how to read meters (e.g., needles, scales, digit interpretation), then upload it under instructions/ in the Knowledge Base source bucket.
KB_BUCKET=$(aws cloudformation describe-stacks \ --stack-name meter-reading-agent-stack \ --region us-east-1 \ --query 'Stacks[0].Outputs[?OutputKey==`KnowledgeBaseSourceBucketName`].OutputValue' \ --output text) aws s3 cp reading-instructions.md \ "s3://${KB_BUCKET}/instructions/reading-instructions.md" \ --region us-east-12. Register meter specifications (Meter Specs)
Create a JSON file that defines meter type, unit, range, graduation, and validation rules, then upload it under meter-specs/.
Example: meter-types.json
{ "meter_types": [ { "id": "pressure-gauge-001", "name": "Pressure Gauge (Analog Single Needle)", "type": "pressure", "unit": "MPa", "min_value": 0, "max_value": 10, "graduation": 0.5, "validation_rules": { "min": 0, "max": 10, "decimal_places": 2 }, "qr_code_prefix": "PRESS" } ] }Required fields (keep descriptions concise, but do include them):
- description: Human-readable description of the meter (type, range, scale, etc.).
- reading_method: How to interpret the scale/needle and how to interpolate between marks.
- common_instructions: Shared instructions (photo angle/lighting, QR-code handling, error handling, confidence guidance).
3. Synchronize the Knowledge Base (Ingestion)
After updating files, start a Knowledge Base ingestion job to apply the changes.
How to Use
- Upload an image to ImageBucketName (from CloudFormation Outputs).
- The image PUT triggers EventBridge (Object Created), and Lambda automatically invokes the AgentCore Runtime Endpoint.
Processing flow:
- S3 (image PUT)
- EventBridge rule (S3 Object Created)
- Lambda (<stack>-invoke-agentcore)
- AgentCore Runtime Endpoint (qualifier: meter_reading_endpoint)
Notes:
- Supported extensions are .jpg, .jpeg, and .png (others are skipped).
Expected Result
On success, the agent returns the reading value, confidence, validation result, and more (example).
{ "meter_id": "001", "meter_type": "pressure", "reading_value": 5.5, "status": "processed", "reading_unit": "MPa", "confidence_score": 0.95, "validation_passed": true, "error_message": null }Notes
For detailed deployment steps, please refer to: https://marketplace.cf.classmethod.net/services/meter-reading-ai-agent/
Support
Vendor support
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.