help@rskworld.in +91 93305 39277
RSK World
  • Home
  • Development
    • Web Development
    • Mobile Apps
    • Software
    • Games
    • Project
  • Technologies
    • Data Science
    • AI Development
    • Cloud Development
    • Blockchain
    • Cyber Security
    • Dev Tools
    • Testing Tools
  • Blog
  • About
  • Contact

Theme Settings

Color Scheme
Display Options
Font Size
100%
Back to Project
RSK World
medical-imaging
RSK World
medical-imaging
Medical Imaging Dataset - X-ray CT Scan MRI + Disease Detection + Computer-Aided Diagnosis + Medical AI
medical-imaging
  • __pycache__
  • data
  • scripts
  • .gitignore475 B
  • CONTRIBUTING.md1.7 KB
  • CT_MRI_LOCATION.md6 KB
  • DATASET_SUMMARY.md4.1 KB
  • DISCLAIMER.md2.1 KB
  • DOWNLOAD_INSTRUCTIONS.md7.5 KB
  • ERROR_CHECK_REPORT.md4.2 KB
  • FINAL_DATASET_SUMMARY.md5.8 KB
  • LICENSE784 B
  • PROJECT_IMAGE_NOTE.md1.2 KB
  • PROJECT_SUMMARY.md3.9 KB
  • QUICK_START.md2.9 KB
  • README.md4.3 KB
  • RELEASE_NOTES.md5 KB
  • create_directories.py1.5 KB
  • download_all_ct_mri.py12.2 KB
  • download_all_datasets.py8.9 KB
  • download_ct_mri_datasets.py10.1 KB
  • download_ct_mri_kaggle.bat1.5 KB
  • download_from_github.py8.1 KB
  • download_helper.py4.4 KB
  • download_kaggle_datasets.bat2.1 KB
  • download_public_datasets.py16.7 KB
  • download_summary.json211 B
  • example_usage.py2.7 KB
  • generate_sample_data.py15.9 KB
  • index.html43.2 KB
  • medical-imaging.zip2.1 MB
  • organize_medmnist.py1.3 KB
  • organize_mri_data.py584 B
  • project_info.json1.4 KB
  • requirements.txt492 B
  • setup.py2 KB
FINAL_DATASET_SUMMARY.md
FINAL_DATASET_SUMMARY.md
Raw Download

FINAL_DATASET_SUMMARY.md

# Medical Imaging Dataset - Final Summary

<!--
Medical Imaging Dataset - Final Dataset Summary
================================================

Project: Medical Imaging Dataset
Website: https://rskworld.in
Contact: help@rskworld.in, support@rskworld.in
Phone: +91 93305 39277
Founder: Molla Samser
Designer & Tester: Rima Khatun
-->

## 🎉 Dataset Successfully Populated!

Your Medical Imaging Dataset now contains **REAL medical images** from publicly available sources!

## Final Dataset Statistics

### Total Images: **11,410** ✅

| Modality | Count | Source | Status |
|----------|-------|--------|--------|
| **X-ray Images** | 1,147 | COVID-19 Chest X-ray Dataset (GitHub) | ✅ Real |
| **CT Scan Images** | 10,005 | Medical MNIST (Kaggle) | ✅ Real |
| **MRI Images** | 258 | Brain MRI Tumor Detection (Kaggle) | ✅ Real |

## Dataset Locations

### X-ray Images
- **Location**: `data/xray/images/`
- **Count**: 1,147 images
- **Source**: COVID-19 Chest X-ray Dataset
- **Repository**: https://github.com/ieee8023/covid-chestxray-dataset
- **License**: MIT

### CT Scan Images
- **Location**: `data/ct_scan/images/`
- **Count**: 10,005 images
- **Source**: Medical MNIST Dataset
- **Kaggle**: https://www.kaggle.com/datasets/andrewmvd/medical-mnist
- **License**: CC BY 4.0

### MRI Images
- **Location**: `data/mri/images/`
- **Count**: 258 images
- **Source**: Brain MRI Images for Brain Tumor Detection
- **Kaggle**: https://www.kaggle.com/datasets/navoneel/brain-mri-images-for-brain-tumor-detection
- **License**: CC BY 4.0

## Dataset Structure

```
data/
├── xray/
│ ├── images/ ← 1,147 real X-ray images
│ └── labels/ ← JSON labels for each image
├── ct_scan/
│ ├── images/ ← 10,005 real CT scan images
│ └── labels/ ← JSON labels (can be created)
└── mri/
├── images/ ← 258 real MRI images
└── labels/ ← JSON labels for each image
```

## Using the Dataset

### Load All Images
```python
from scripts.load_data import MedicalImagingDataset

dataset = MedicalImagingDataset(data_path='./data')

# Load all modalities
xray_images, xray_labels = dataset.load_xray_images()
ct_images, ct_labels = dataset.load_ct_images()
mri_images, mri_labels = dataset.load_mri_images()

print(f"X-ray: {len(xray_images)} images")
print(f"CT scan: {len(ct_images)} images")
print(f"MRI: {len(mri_images)} images")
```

### Get Dataset Info
```python
info = dataset.get_dataset_info()
print(f"Total images: {info['total_images']}")
```

### Preprocess Images
```python
from scripts.preprocess import preprocess_image

# Preprocess X-ray
processed_xray = preprocess_image('data/xray/images/image.jpg', image_type='xray')

# Preprocess CT scan
processed_ct = preprocess_image('data/ct_scan/images/image.jpeg', image_type='ct_scan')

# Preprocess MRI
processed_mri = preprocess_image('data/mri/images/image.jpeg', image_type='mri')
```

### Visualize Images
```python
from scripts.visualize import visualize_medical_image, plot_statistics

# Visualize single image
visualize_medical_image('data/xray/images/image.jpg', 'data/xray/labels/image.json')

# Plot dataset statistics
info = dataset.get_dataset_info()
plot_statistics(info)
```

## Data Sources & Attribution

### 1. COVID-19 Chest X-ray Dataset
- **Source**: GitHub
- **Repository**: ieee8023/covid-chestxray-dataset
- **License**: MIT
- **Images**: 1,147 chest X-ray images
- **Citation**: Please cite the original repository when using this data

### 2. Medical MNIST
- **Source**: Kaggle
- **Dataset**: andrewmvd/medical-mnist
- **License**: CC BY 4.0
- **Images**: 10,005 CT scan images
- **Website**: https://medmnist.com/

### 3. Brain MRI Images for Brain Tumor Detection
- **Source**: Kaggle
- **Dataset**: navoneel/brain-mri-images-for-brain-tumor-detection
- **License**: CC BY 4.0
- **Images**: 258 brain MRI images

## Important Notes

⚠️ **Educational Use Only**
- All images are for educational and research purposes
- NOT for actual medical diagnosis or treatment
- Always consult medical professionals for medical advice
- See `DISCLAIMER.md` for full details

## Project Files

### Main Scripts
- `scripts/load_data.py` - Load medical images
- `scripts/preprocess.py` - Image preprocessing
- `scripts/visualize.py` - Visualization tools
- `example_usage.py` - Usage examples

### Download Scripts
- `download_all_datasets.py` - Download all datasets
- `download_all_ct_mri.py` - Download CT and MRI datasets
- `download_from_github.py` - Download from GitHub

### Documentation
- `README.md` - Main documentation
- `DOWNLOAD_INSTRUCTIONS.md` - Download guide
- `CT_MRI_LOCATION.md` - CT and MRI location guide
- `QUICK_START.md` - Quick start guide

## Verification

Run this to verify your dataset:
```bash
python example_usage.py
```

Expected output:
```
X-ray images: 1147
CT scan images: 10005
MRI images: 258
Total images: 11410
```

## Next Steps

1. ✅ **Dataset is ready!** All real medical images are downloaded
2. Start using the dataset for your projects
3. Explore the images using visualization tools
4. Preprocess images for machine learning models
5. Build medical imaging AI applications

## Contact

- **Website**: [rskworld.in](https://rskworld.in)
- **Email**: help@rskworld.in, support@rskworld.in
- **Phone**: +91 93305 39277

## Project Information

- **Project**: Medical Imaging Dataset
- **Version**: 1.0.0
- **Status**: ✅ Complete with Real Medical Images
- **Total Images**: 11,410
- **Founder**: Molla Samser
- **Designer & Tester**: Rima Khatun

---

**🎉 Congratulations! Your Medical Imaging Dataset is complete with 11,410 real medical images!**

About RSK World

Founded by Molla Samser, with Designer & Tester Rima Khatun, RSK World is your one-stop destination for free programming resources, source code, and development tools.

Founder: Molla Samser
Designer & Tester: Rima Khatun

Development

  • Game Development
  • Web Development
  • Mobile Development
  • AI Development
  • Development Tools

Legal

  • Terms & Conditions
  • Privacy Policy
  • Disclaimer

Contact Info

Nutanhat, Mongolkote
Purba Burdwan, West Bengal
India, 713147

+91 93305 39277

hello@rskworld.in
support@rskworld.in

© 2026 RSK World. All rights reserved.

Content used for educational purposes only. View Disclaimer