ondrs commited on
Commit
951d659
·
verified ·
1 Parent(s): 87d5ea4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +90 -35
README.md CHANGED
@@ -1,35 +1,90 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: width
7
- dtype: float64
8
- - name: height
9
- dtype: float64
10
- - name: objects
11
- struct:
12
- - name: id
13
- sequence: int64
14
- - name: area
15
- sequence: float64
16
- - name: bbox
17
- sequence:
18
- sequence: float64
19
- - name: category
20
- sequence: int64
21
- - name: image_id
22
- dtype: int64
23
- splits:
24
- - name: train
25
- num_bytes: 788454917.485
26
- num_examples: 2299
27
- download_size: 512699837
28
- dataset_size: 788454917.485
29
- configs:
30
- - config_name: default
31
- data_files:
32
- - split: train
33
- path: data/train-*
34
- license: apache-2.0
35
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ dataset_info:
3
+ features:
4
+ - name: image
5
+ dtype: image
6
+ - name: width
7
+ dtype: float64
8
+ - name: height
9
+ dtype: float64
10
+ - name: objects
11
+ struct:
12
+ - name: id
13
+ sequence: int64
14
+ - name: area
15
+ sequence: float64
16
+ - name: bbox
17
+ sequence:
18
+ sequence: float64
19
+ - name: category
20
+ sequence: int64
21
+ - name: image_id
22
+ dtype: int64
23
+ splits:
24
+ - name: train
25
+ num_bytes: 788454917.485
26
+ num_examples: 2299
27
+ download_size: 512699837
28
+ dataset_size: 788454917.485
29
+ configs:
30
+ - config_name: default
31
+ data_files:
32
+ - split: train
33
+ path: data/train-*
34
+ license: apache-2.0
35
+ tags:
36
+ - signature
37
+ - initials
38
+ - handwritten
39
+ - redaction
40
+ - date
41
+ pretty_name: 'SignverOD: A Dataset Signature Object Detection'
42
+ ---
43
+ # Dataset Card for SignverOD
44
+
45
+ Detecting the presence and location of hand written artifacts such as signatures, dates, initials can be critical for scanned (offline)document processing systems. This capability can support multiple downstream tasks such as signature verification, document tagging and categorization.
46
+
47
+ SignverOD is a curated dataset of 2576 scanned document images with 7103 bounding box annotations, across 4 categories (signature, initials, redaction, date). SignverOD cover a diverse set of document types including memos, emails, bank cheques, lease agreements and letters, memos, invoices.
48
+
49
+ ## Dataset Sources
50
+
51
+ Original source: https://www.kaggle.com/datasets/victordibia/signverod
52
+
53
+ Images of documents in this dataset are sourced from 4 main locations and then annotated.
54
+
55
+ ### Tobacco800
56
+ Tobacco800 is a publicly accessible document image collection with realistic scope and complexity is important to the document image analysis and search community. https://www.kaggle.com/sprytte/tobacco-800-dataset.
57
+
58
+ ### NIST.gov Special Database
59
+ The NIST.gov structured Forms Database consists of 5,590 pages of binary, black-and-white images of synthesized documents. The documents in this database are 12 different tax forms from the IRS 1040 Package X for the year 1988. https://www.nist.gov/srd/nist-special-database-2
60
+
61
+ ### Bank Cheques
62
+ The bank cheques dataset is a collection of xx colored images of bank checks. They consist of scanned realistic checks as well as examplar signatures with signatures. https://www.kaggle.com/saifkhichi96/bank-checks-signatures-segmentation-dataset
63
+
64
+ ### GSA.gov Lease Documents
65
+ GSA provides electronic copies of GSA lease documents for general public viewing. The lease documents are sorted by region and contain, for the most part, GSA Lease Forms and Lease Amendments (LA) from selected GSA leases across the nation. https://www.gsa.gov/real-estate/real-estate-services/leasing/executed-lease-documents
66
+
67
+ ## CiItation
68
+
69
+ If you use this dataset as part of your work or experiments, please consider citing:
70
+
71
+
72
+ ```bibtex
73
+ @article{DibiaReed2022signverod,
74
+ author = {Victor, Dibia},
75
+ title = {A Dataset for Handwritten Signature Object Detection in Scanned Documents.},
76
+ year = {2022},
77
+ publisher = {victordibia.com},
78
+ journal = {victordibia.com},
79
+ url = {https://victordibia.com/signverod.pdf}
80
+ }
81
+
82
+ @article{Dibia2022signver,
83
+ author = {Victor, Dibia and Andrew Reed},
84
+ title = {SignVer: A Deep Learning Library for Automatic Offline Signature Verification Tasks},
85
+ year = {2022},
86
+ publisher = {victordibia.com},
87
+ journal = {victordibia.com},
88
+ url = {https://victordibia.com/signver.pdf}
89
+ }
90
+ ```