π FREE License Plate Recognition API - No Credit Card Required!
Want to try ANPR (Automatic Number Plate Recognition) / ALPR (Automatic License Plate Recognition) / LPR (License Plate Recognition) without buying a license? We offer a completely FREE test API with 1000 requests per day!
✨ What You Get (FREE!)
- ✅ 1000 requests/day - Perfect for testing and evaluation
- ✅ No credit card required
- ✅ No registration needed
- ✅ 5 regions supported: Korea, Europe, USA/Canada, China, Universal
- ✅ Multiple models to test (pico to large)
- ✅ Works instantly - just install and run!
π Quick Start (30 Seconds)
# Install
pip install marearts-anpr
# Test immediately (NO CONFIG NEEDED!)
ma-anpr test-api your-plate.jpg --region eup
# That's it! π
π Supported Regions
| Region Code | Coverage | Example |
|---|---|---|
kr |
South Korea | 123κ°4567 |
eup |
Europe (EU standards) | AB-123-CD |
na |
USA, Canada, Mexico | ABC-1234 |
cn |
China | δΊ¬A·12345 |
univ |
Universal (all) | Any format |
π» Usage Examples
Command Line (Easiest!)
# European plates
ma-anpr test-api eu-plate.jpg --region eup
# Korean plates
ma-anpr test-api kr-plate.jpg --region kr
# US plates
ma-anpr test-api us-plate.jpg --region na
# Chinese plates
ma-anpr test-api cn-plate.jpg --region cn
# Unknown region? Use universal
ma-anpr test-api unknown-plate.jpg --region univ
Python Script
#!/usr/bin/env python3
import subprocess
def test_free_anpr(image_path, region='eup'):
"""Test free ANPR API - no credentials needed!"""
cmd = f'ma-anpr test-api "{image_path}" --region {region}'
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
if result.returncode == 0:
print(result.stdout)
return True
else:
print(f"Error: {result.stderr}")
return False
# Test European plate
test_free_anpr("plate.jpg", "eup")
# Test Korean plate
test_free_anpr("plate2.jpg", "kr")
Test Multiple Regions
# Test same image with different regions
for region in eup kr na cn univ; do
echo "Testing $region..."
ma-anpr test-api plate.jpg --region $region
done
π― Advanced Options
Try Different Models
# List all available models
ma-anpr test-api --list-models
# Try different detector models
ma-anpr test-api plate.jpg --region eup --detector small_640p_fp32
ma-anpr test-api plate.jpg --region eup --detector medium_640p_fp32
ma-anpr test-api plate.jpg --region eup --detector large_640p_fp32
# Try different OCR models
ma-anpr test-api plate.jpg --region eup --ocr small_fp32
ma-anpr test-api plate.jpg --region eup --ocr medium_fp32
ma-anpr test-api plate.jpg --region eup --ocr large_fp32
Batch Testing
# Test all images in a folder
for img in ./plates/*.jpg; do
echo "Processing $img..."
ma-anpr test-api "$img" --region eup
done
π Sample Output
{
"results": [
{
"ocr": "AB-123-CD",
"ocr_conf": 98.5,
"ltrb": [120, 230, 380, 290],
"ltrb_conf": 95
}
],
"ltrb_proc_sec": 0.15,
"ocr_proc_sec": 0.03,
"status": "success"
}
π FREE vs PAID Comparison
| Feature | FREE Test API | Paid License |
|---|---|---|
| Requests/Day | 1000 | Unlimited |
| Speed | ~0.5s (cloud) | ~0.02s (local GPU) |
| Internet Required | Yes | No (offline OK) |
| Configuration | None | One-time setup |
| Regions | All 5 | All 5 |
| Models | All | All |
| Price | $0 | Contact sales |
π Use Cases for Free API
- ✅ Evaluation: Try before buying a license
- ✅ Prototyping: Build POC applications
- ✅ Testing: Test accuracy on your specific plates
- ✅ Education: Learn ANPR/ALPR/LPR technology
- ✅ Small Projects: Personal projects under 1000/day
- ✅ Region Testing: Find which region works best
- ✅ Model Comparison: Compare different model sizes
π When to Upgrade to Paid License?
Consider upgrading when you need:
- π Unlimited requests (no daily limit)
- ⚡ 10-100x faster processing (local GPU)
- π Offline operation (no internet needed)
- π’ Commercial deployment
- πΉ Real-time video processing
- π― High-volume applications (>1000/day)
π‘ Pro Tips
# 1. Use specific regions for best accuracy
ma-anpr test-api plate.jpg --region eup # ✅ Better
ma-anpr test-api plate.jpg --region univ # ⚠️ OK but less accurate
# 2. Test different models to find best speed/accuracy balance
ma-anpr test-api plate.jpg --region eup --detector small_640p_fp32 # Faster
ma-anpr test-api plate.jpg --region eup --detector large_640p_fp32 # More accurate
# 3. Check remaining quota
ma-anpr test-api --check-quota
# 4. Get help
ma-anpr test-api --help
# 5. See all options
ma-anpr test-api --list-models
π Troubleshooting
Rate limit exceeded?
# Wait until midnight UTC (resets daily)
# OR upgrade to paid license for unlimited requests
No plates detected?
# Try different detector models
ma-anpr test-api plate.jpg --region eup --detector large_640p_fp32
# Try universal region
ma-anpr test-api plate.jpg --region univ
Wrong text recognized?
# Make sure you're using correct region!
ma-anpr test-api plate.jpg --region kr # For Korean plates
ma-anpr test-api plate.jpg --region eup # For European plates
# Try larger OCR model
ma-anpr test-api plate.jpg --region eup --ocr large_fp32
π Complete Example Script
#!/usr/bin/env python3
"""
Free ANPR Test Script
Test license plate recognition with different regions and models
"""
import subprocess
import json
def test_anpr_free(image_path, region='eup', detector='medium_640p_fp32', ocr='medium_fp32'):
"""Test free ANPR API"""
cmd = [
'ma-anpr', 'test-api', image_path,
'--region', region,
'--detector', detector,
'--ocr', ocr
]
result = subprocess.run(cmd, capture_output=True, text=True)
if result.returncode == 0:
try:
data = json.loads(result.stdout)
return data
except:
return result.stdout
else:
return {"error": result.stderr}
# Test European plate with different models
image = "eu-plate.jpg"
print("Testing different detector models...")
for detector in ['small_640p_fp32', 'medium_640p_fp32', 'large_640p_fp32']:
result = test_anpr_free(image, 'eup', detector)
print(f"{detector}: {result}")
print("\nTesting different regions...")
for region in ['eup', 'kr', 'na', 'univ']:
result = test_anpr_free(image, region)
print(f"{region}: {result}")
π― Real-World Example
# Parking lot monitoring (Europe)
ma-anpr test-api parking-cam.jpg --region eup
# Toll booth (USA)
ma-anpr test-api toll-booth.jpg --region na
# Security gate (Korea)
ma-anpr test-api security-cam.jpg --region kr
# Traffic enforcement (China)
ma-anpr test-api traffic.jpg --region cn
# Multi-national (airport parking)
ma-anpr test-api airport.jpg --region univ
π Why Choose MareArts ANPR?
- ✅ FREE tier available - Try before you buy!
- ✅ State-of-the-art AI - Latest deep learning models
- ✅ Multi-region support - Works worldwide
- ✅ Fast processing - ~0.02s with GPU
- ✅ Easy integration - Python, HTTP API, CLI
- ✅ Regular updates - New models and features
- ✅ Commercial ready - Production-grade quality
π Get Started Now!
# Install (takes 10 seconds)
pip install marearts-anpr
# Test (takes 20 seconds)
ma-anpr test-api your-plate.jpg --region eup
# Celebrate! π
# You just recognized your first license plate!
π Need More?
- π Website: https://www.marearts.com
- π Purchase: https://www.marearts.com/products/anpr
- π Documentation: Full examples included with package
- π¬ Support: Technical support with paid license
π¬ What People Are Saying
"Finally, an ANPR API I can test without entering my credit card!" - Developer
"1000 requests/day is perfect for my small parking lot project." - Small Business Owner
"Tested all 5 regions before buying. Confident in my purchase!" - System Integrator
π Summary
MareArts ANPR offers a completely FREE test API with 1000 requests per day. No credit card, no registration, no strings attached. Just install and start recognizing license plates!
- ✅ Install:
pip install marearts-anpr - ✅ Test:
ma-anpr test-api plate.jpg --region eup - ✅ Evaluate: Try all regions and models
- ✅ Upgrade: When ready for unlimited use
Start your ANPR/ALPR/LPR journey today - completely FREE! ππΈ
No comments:
Post a Comment