Spaces:
Paused
Paused
File size: 1,116 Bytes
211e423 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
{
"api_endpoints": {
"local": "http://localhost:7860",
"staging": "https://algoryn-dots-ocr-idcard-staging.hf.space",
"production": "https://algoryn-dots-ocr-idcard.hf.space"
},
"test_images": [
"tom_id_card_front.jpg",
"tom_id_card_back.jpg"
],
"expected_fields": [
"document_number",
"surname",
"given_names",
"nationality",
"date_of_birth",
"gender",
"date_of_issue",
"date_of_expiry"
],
"roi_test_cases": [
{
"name": "full_image",
"roi": null,
"description": "Process entire image"
},
{
"name": "center_crop",
"roi": {
"x1": 0.25,
"y1": 0.25,
"x2": 0.75,
"y2": 0.75
},
"description": "Process center 50% of image"
},
{
"name": "top_half",
"roi": {
"x1": 0.0,
"y1": 0.0,
"x2": 1.0,
"y2": 0.5
},
"description": "Process top half of image"
}
],
"performance_thresholds": {
"max_processing_time": 10.0,
"min_confidence": 0.7,
"min_fields_extracted": 3
},
"test_timeout": 30
}
|