yh0701 commited on
Commit
5fdd726
1 Parent(s): cee7b91

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -18
README.md CHANGED
@@ -16,11 +16,14 @@ size_categories:
16
 
17
  <!-- Provide a quick summary of the dataset. -->
18
 
19
- The "FracAtlas" dataset is a collection of musculoskeletal radiographs for fracture classification, localization, and segmentation.
20
- It includes 4,083 X-Ray images for bones with annotations in multiple formats.The annotations include labels, classes, and etc.
21
  The dataset is intended for use in deep learning tasks in medical imaging, specifically targeting the understanding of bone fractures.
22
  It is freely available under a CC-BY 4.0 license.
23
 
 
 
 
24
 
25
  - **Curated by:** Abedeen, Iftekharul; Rahman, Md. Ashiqur; Zohra Prottyasha, Fatema; Ahmed, Tasnim; Mohmud Chowdhury, Tareque; Shatabda, Swakkhar
26
  - **License:** cc-by-2.5
@@ -47,25 +50,28 @@ The "FracAtlas" dataset can be used to develop multiple machine learning or dee
47
 
48
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
49
 
 
50
  The original zip file contains 3 subfolders “images”, “Annotations”, “utilities” and a “dataset.csv” file.
51
  In the "image" folder, it contains 2 subfolders: "Fractured" and "Non-fractured", and each image is stored in corresponding folder in JPG format.
52
  In the "Annotations" folder, it contains 4 subfolders: "COCO JSON", "PASCAL VOC", "VGG JSON", and "YOLO". Annotations are stored in their corresponding folders. More details can be read in ### Annotations section.
53
- In the "utilities" folder, it contains several programming scripts that could be used to convert the raw files to a more readable format. None of them were used in this dataset.
54
- The "dataset.csv" contains many basic variables for each image: \
55
- - image_id [string]: The unique identifier for each radiograph image in the dataset. \
56
- - hand [int]: A binary indicators (1 or 0) marking the presence of hand in the radiograph \
57
- - leg [int] : A binary indicators (1 or 0) marking the presence of leg in the radiograph \
58
- - hip [int] : A binary indicators (1 or 0) marking the presence of hip in the radiograph \
59
- - shoulder [int]: A binary indicator (1 or 0) marking the shoulder in the radiograph \
60
- - mixed [int]: A binary indicator of whether the image contains multiple body parts \
61
- - hardware [int]: A binary indicator marking the presence of medical hardware (i.e. screws or plates) in the image \\
62
- - multiscan [int]: A binary indicator signifies whether the image is part of a set of multiple scans \
63
- - fractured [int]: A binary indicator of whether there is a fracture present in the image \
64
- - fracture_count [int]: The number of fractures present in the image \
65
- - frontal [int]: A binary indicator denoting the front orientation of the radiograph \
66
- - lateral[int]: A binary indicator denoting the side orientation of the radiograph \
67
- - oblique [int]: A binary indicator denoting denoting the angled orientation of the radiograph
68
-
 
 
69
  Above are the data that could be directly extracted from the downloaded files. Other than the above-mentioned features, this huggingface dataset also extract infomation from annotations files to present a more systematic and clean FracAtlas dataset.
70
  Other variables are extracted from the annotations files:
71
  - Image [image]: A PIL image object denoting each X-ray image \
 
16
 
17
  <!-- Provide a quick summary of the dataset. -->
18
 
19
+ The "FracAtlas" dataset is a collection of musculoskeletal radiographs for bone fracture classification, localization, and segmentation.
20
+ It includes 4,083 X-Ray images (717 fracture images) with corresponding annotations in multiple formats. The annotations include segmentations, width, and etc in COCO, VGG, YOLO, and Pascal VOC format.
21
  The dataset is intended for use in deep learning tasks in medical imaging, specifically targeting the understanding of bone fractures.
22
  It is freely available under a CC-BY 4.0 license.
23
 
24
+ This script provides a Hugging Face `datasets` loader for the FracAtlas dataset. The generated dataset includes high-quality X-Ray images and incorporated detailed annotations from COCO JSON format for segmentation
25
+ and bounding box information, as well as additional localization data from PASCAL VOC XML files. The loader handles downloading and preparing the dataset, making it readily available for machine learning models and analysis
26
+ tasks in medical imaging, especially focusing on the detection and understanding of bone fractures.
27
 
28
  - **Curated by:** Abedeen, Iftekharul; Rahman, Md. Ashiqur; Zohra Prottyasha, Fatema; Ahmed, Tasnim; Mohmud Chowdhury, Tareque; Shatabda, Swakkhar
29
  - **License:** cc-by-2.5
 
50
 
51
  <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
52
 
53
+ ### Original Dataset Schema
54
  The original zip file contains 3 subfolders “images”, “Annotations”, “utilities” and a “dataset.csv” file.
55
  In the "image" folder, it contains 2 subfolders: "Fractured" and "Non-fractured", and each image is stored in corresponding folder in JPG format.
56
  In the "Annotations" folder, it contains 4 subfolders: "COCO JSON", "PASCAL VOC", "VGG JSON", and "YOLO". Annotations are stored in their corresponding folders. More details can be read in ### Annotations section.
57
+ In the "utilities" folder, it contains several programming scripts that could be used to convert the raw files to a more readable format. None of them were used in this dataset loader.
58
+ The "dataset.csv" contains many basic variables for each image: <br />
59
+ - image_id [string]: The unique identifier for each radiograph image in the dataset. <br />
60
+ - hand [int]: A binary indicators (1 or 0) marking the presence of hand in the radiograph <br />
61
+ - leg [int] : A binary indicators (1 or 0) marking the presence of leg in the radiograph <br />
62
+ - hip [int] : A binary indicators (1 or 0) marking the presence of hip in the radiograph <br />
63
+ - shoulder [int]: A binary indicator (1 or 0) marking the shoulder in the radiograph <br />
64
+ - mixed [int]: A binary indicator of whether the image contains multiple body parts <br />
65
+ - hardware [int]: A binary indicator marking the presence of medical hardware (i.e. screws or plates) in the image <br />
66
+ - multiscan [int]: A binary indicator signifies whether the image is part of a set of multiple scans <br />
67
+ - fractured [int]: A binary indicator of whether there is a fracture present in the image <br />
68
+ - fracture_count [int]: The number of fractures present in the image <br />
69
+ - frontal [int]: A binary indicator denoting the front orientation of the radiograph <br />
70
+ - lateral[int]: A binary indicator denoting the side orientation of the radiograph <br />
71
+ - oblique [int]: A binary indicator denoting denoting the angled orientation of the radiograph <br />
72
+
73
+ ### Updated Dataset Schema
74
+ In this dataset loader, certain existed variables are modified into specific Huggingface feature, such
75
  Above are the data that could be directly extracted from the downloaded files. Other than the above-mentioned features, this huggingface dataset also extract infomation from annotations files to present a more systematic and clean FracAtlas dataset.
76
  Other variables are extracted from the annotations files:
77
  - Image [image]: A PIL image object denoting each X-ray image \