BatSilver commited on
Commit
61970f5
·
verified ·
1 Parent(s): e154cc9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -61
README.md CHANGED
@@ -1,62 +1,62 @@
1
- # Text Detection Dataset
2
- This dataset is a comprehensive collection of Arabic and English text detection samples designed for benchmarking and evaluating text detection models. The dataset combines samples from multiple open-source datasets to provide diverse text detection challenges across different domains, scripts, and image conditions.
3
-
4
- ---
5
-
6
- ## 📁 Dataset Structure
7
- - Images are stored in .jpg format in the "Text Detection Images" folder
8
- - Accompanied by a CSV file (textdetectionannotations.csv) with bounding box coordinates and image characteristics.
9
-
10
- ---
11
-
12
- ## 📚 Data Sources and Attribution
13
-
14
- This dataset is compiled from samples taken from the following sources:
15
-
16
- - **SROIE Dataset v2**: Scene text detection samples from [Kaggle - urbikn](https://www.kaggle.com/datasets/urbikn/sroie-datasetv2)
17
- - **ICDAR2013**: International Conference on Document Analysis and Recognition 2013 dataset samples
18
- - **EvArEST Dataset**: Arabic scene text samples from [HGamal11/EvArEST-dataset-for-Arabic-scene-text](https://github.com/HGamal11/EvArEST-dataset-for-Arabic-scene-text)
19
- - **Arabic Documents OCR Dataset**: Document text detection samples from [Kaggle - humansintheloop](https://www.kaggle.com/datasets/humansintheloop/arabic-documents-ocr-dataset/data)
20
-
21
- ---
22
-
23
- ## 📊Dataset Statistics
24
- | Metric | Value |
25
- |----------------|----------------------------------------|
26
- | Total Images | 725 |
27
- | Languages | English and Arabic |
28
- | Image Format | `.jpg` |
29
- | Annotation Type| Bounding Box Coordinates in Polygon format |
30
- | Source Datasets| 4 (SROIE, ICDAR2013, EvArEST, Arabic Documents OCR) |
31
-
32
- ---
33
-
34
- ## 📊 Data Insights
35
-
36
- **🌍Dataset Characteristics**
37
- | Characteristic | Values |
38
- |----------------|----------------------------------------|
39
- | Dataset Name | SROIE, ICDAR2013, EvArEST, Arabic Documents OCR |
40
- | Image Category | receipt, scene_text|
41
- | Language | Arabic, English |
42
- | Image Quality
43
- | - Blurry | True, False |
44
- | - Noisy | True, False |
45
- | - Rotated | True, False |
46
- | Contrast Level | low, medium, high |
47
- | Brightness Level | low, medium, high |
48
- | Resolution Category | low, medium, high |
49
- | Complexity Level | low, medium, high |
50
-
51
-
52
-
53
- ---
54
-
55
- # 🛠️ How to Use
56
- You can load the dataset using:
57
-
58
- ```python
59
- from datasets import load_dataset
60
-
61
- ds = load_dataset("Ejada/TextDetectionData")
62
  ```
 
1
+ # Text Detection Dataset
2
+ This dataset is a comprehensive collection of Arabic and English text detection samples designed for benchmarking and evaluating text detection models. The dataset combines samples from multiple open-source datasets to provide diverse text detection challenges across different domains, scripts, and image conditions.
3
+
4
+ ---
5
+
6
+ ## 📁 Dataset Structure
7
+ - Images are stored in .jpg format in the "Text Detection Images" folder
8
+ - Accompanied by a CSV file (textdetectionannotations.csv) with bounding box coordinates and image characteristics.
9
+
10
+ ---
11
+
12
+ ## 📚 Data Sources and Attribution
13
+
14
+ This dataset is compiled from samples taken from the following sources:
15
+
16
+ - **SROIE Dataset v2**: Scene text detection samples from [Kaggle - urbikn](https://www.kaggle.com/datasets/urbikn/sroie-datasetv2)
17
+ - **ICDAR2013**: International Conference on Document Analysis and Recognition 2013 dataset samples
18
+ - **EvArEST Dataset**: Arabic scene text samples from [HGamal11/EvArEST-dataset-for-Arabic-scene-text](https://github.com/HGamal11/EvArEST-dataset-for-Arabic-scene-text)
19
+ - **Arabic Documents OCR Dataset**: Document text detection samples from [Kaggle - humansintheloop](https://www.kaggle.com/datasets/humansintheloop/arabic-documents-ocr-dataset/data)
20
+
21
+ ---
22
+
23
+ ## 📊Dataset Statistics
24
+ | Metric | Value |
25
+ |----------------|----------------------------------------|
26
+ | Total Images | 725 |
27
+ | Languages | English and Arabic |
28
+ | Image Format | `.jpg` |
29
+ | Annotation Type| Bounding Box Coordinates in Polygon format |
30
+ | Source Datasets| 4 (SROIE, ICDAR2013, EvArEST, Arabic Documents OCR) |
31
+
32
+ ---
33
+
34
+ ## 📊 Data Insights
35
+
36
+ **🌍Dataset Characteristics**
37
+ | Characteristic | Values |
38
+ |----------------|----------------------------------------|
39
+ | Dataset Name | SROIE, ICDAR2013, EvArEST, Arabic Documents OCR |
40
+ | Image Category | receipt, scene_text|
41
+ | Language | Arabic, English |
42
+ | Image Quality
43
+ | - Blurry | True, False |
44
+ | - Noisy | True, False |
45
+ | - Rotated | True, False |
46
+ | Contrast Level | low, medium, high |
47
+ | Brightness Level | low, medium, high |
48
+ | Resolution Category | low, medium, high |
49
+ | Complexity Level | low, medium, high |
50
+
51
+
52
+
53
+ ---
54
+
55
+ # 🛠️ How to Use
56
+ You can load the dataset using:
57
+
58
+ ```python
59
+ from datasets import load_dataset
60
+
61
+ ds = load_dataset("BatSilver/TextDetectionData")
62
  ```