File size: 3,161 Bytes
c272287 |
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
{
"pipeline": {
"input": [
"img"
],
"output": [
"post_output"
],
"tasks": [
{
"type": "Task",
"module": "Transform",
"name": "Preprocess",
"input": [
"img"
],
"output": [
"prep_output"
],
"transforms": [
{
"color_type": "color_ignore_orientation",
"type": "LoadImageFromFile"
},
{
"keep_ratio": true,
"type": "Resize",
"size": [
4068,
1024
]
},
{
"type": "Normalize",
"to_rgb": true,
"mean": [
123.675,
116.28,
103.53
],
"std": [
58.395,
57.12,
57.375
]
},
{
"type": "Pad",
"size_divisor": 32
},
{
"type": "DefaultFormatBundle"
},
{
"meta_keys": [
"scale_factor",
"flip_direction",
"img_norm_cfg",
"valid_ratio",
"flip",
"pad_shape",
"img_shape",
"img_path",
"ori_shape",
"ori_filename",
"filename"
],
"type": "Collect",
"keys": [
"img"
]
}
]
},
{
"name": "dbnet",
"type": "Task",
"module": "Net",
"is_batched": true,
"input": [
"prep_output"
],
"output": [
"infer_output"
],
"input_map": {
"img": "input"
},
"output_map": {}
},
{
"type": "Task",
"module": "mmocr",
"name": "postprocess",
"component": "DBHead",
"params": {},
"output": [
"post_output"
],
"input": [
"prep_output",
"infer_output"
]
}
]
}
} |