Skip to main content

dataset-preprocessing

Provides preprocessing pipelines and techniques for radiology datasets used in AI development. Use when user mentions "preprocess radiology data", "DICOM preprocessing", "image normalization", "data augmentation", or needs to prepare datasets.

설치로 이동

소스 정보

저장소
aizech/clinical-skills
최근 소스 활동
2026년 4월 21일 22:11
감지된 SKILL.md 언어
영어
스타
5
포크
1

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
4 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
dataset-preprocessing
description
Provides preprocessing pipelines and techniques for radiology datasets used in AI development. Use when user mentions "preprocess radiology data", "DICOM preprocessing", "image normalization", "data augmentation", or needs to prepare datasets.
# Dataset Preprocessing Skill ## Triggers - "preprocess radiology data" - "DICOM preprocessing" - "image normalization" - "data augmentation" - "quality control pipeline" - "mask generation" - "multi-site harmonization" - "training data preparation" ## Parameters - `input_format` (required): Source data format - `dicom` - DICOM files - `nifti` - NIfTI volumes - `metadata` - Header/excel data - `mixed` - Multiple formats - `task_type` (required): Downstream ML task - `detection` - Object/bounding box detection - `segmentation` - Pixel-level segmentation - `classification` - Image classification - `regression` - Continuous value prediction - `modality` (optional): Imaging modality - `multi_vendor` (optional): Boolean for multi-site/multi-vendor data - `dataset_scale` (optional): Small (<1K), medium (1K-100K), large (>100K) ## Preprocessing Components ### Image Processing - Intensity normalization (z-score, min-max, percentile-based) - Windowing/leveling for CT/MRI - Resampling to isotropic voxel size - Brain extraction (skull stripping) - Bias field correction for MRI ### Quality Control - Automated quality scoring - Artifact detection - Contrast-to-noise ratio - Resolution verification - Human-in-the-loop review for edge cases ### Augmentation - Geometric: rotation, flip, scale, elastic deformation - Intensity: noise, contrast, brightness - Modality-specific: CT windowing variants, MRI sequence mixing - Generative: synthetic data augmentation ### Format Conversion - DICOM to NumPy/PyTorch/TensorFlow - DICOM to NIfTI for volumetric data - Annotation format conversion (CSV, COCO, YOLO, Pascal VOC) ## Output Format Returns structured JSON with: - Processing pipeline steps - Code snippets for each transformation - Validation checks and statistics - Expected output specifications - Common pitfalls and mitigations ## Usage Examples ``` input_format: dicom task_type: detection modality: CT multi_vendor: true input_format: nifti task_type: segmentation dataset_scale: large ```
GitHub에서 보기