|
a |
|
b/README.md |
|
|
1 |
## About Dataset |
|
|
2 |
The dataset consists of heart block images, along with associated masks and annotations, aimed at tasks like: |
|
|
3 |
|
|
|
4 |
Segmentation: Identifying and delineating heart blockage areas. |
|
|
5 |
Classification: Determining the presence or type of blockage. |
|
|
6 |
Detection: Locating heart blockages within the images. |
|
|
7 |
The dataset's hierarchical structure ensures compatibility with standard machine learning pipelines, providing well-defined splits for training, validation, and testing. |
|
|
8 |
|
|
|
9 |
### Directory Structure |
|
|
10 |
|
|
|
11 |
Root Directory |
|
|
12 |
The root directory (heartblock/) contains three primary splits: |
|
|
13 |
train/: Data used for model training. |
|
|
14 |
val/: Data used for validation during model development. |
|
|
15 |
test/: Data reserved for evaluating model performance. |
|
|
16 |
|
|
|
17 |
### Subdirectories within Each Split |
|
|
18 |
Each of the train/, val/, and test/ directories contains the following standardized subdirectories: |
|
|
19 |
images/: |
|
|
20 |
Contains raw or preprocessed images of heart block cases. These images serve as the primary input for the models and are typically medical imaging scans (e.g., X-rays, MRIs, or CT scans) showing heart blockages. |
|
|
21 |
|
|
|
22 |
masks/: |
|
|
23 |
Contains binary or multi-class segmentation masks corresponding to the images. These masks highlight the regions of interest (e.g., heart block areas) and are used in supervised learning tasks like segmentation. |
|
|
24 |
|
|
|
25 |
annotations/ (or ann/): |
|
|
26 |
Holds metadata or label files, often in formats like .json or .xml. These annotations include details such as: |
|
|
27 |
|
|
|
28 |
Bounding box coordinates (for detection tasks). |
|
|
29 |
Class labels (for classification tasks). |
|
|
30 |
Pixel-wise information (for segmentation tasks). |
|
|
31 |
Consistency Across Directories |
|
|
32 |
Each split (train, val, test) has the same number of subdirectories in its images/, masks/, and annotations/ folders. This ensures: |
|
|
33 |
|
|
|
34 |
One-to-One Mapping: Each image in images/ has a corresponding mask in masks/ and annotation file in annotations/. |
|
|
35 |
Ease of Use: Facilitates seamless pairing of inputs (images) with their ground truths (masks and annotations) for efficient data loading. |
|
|
36 |
Applications |
|
|
37 |
The heartblock dataset is designed for various medical imaging tasks, including but not limited to: |
|
|
38 |
|
|
|
39 |
Heart Block Detection: Identifying the presence and location of blockages. Segmentation: Extracting precise areas affected by heart blockages. Classification: Determining the type or severity of the blockage. Diagnosis Support: Assisting healthcare professionals in accurate and automated diagnosis. |