血细胞计数与检测数据集
该数据集为图像模态,由大量清晰的外周血涂片显微镜图像和精细的细胞边界框组成。主要用途是用于目标检测任务,通过精准识别和计数红细胞来辅助评估大细胞性、小细胞性或镰刀型等各类贫血导致的形态学改变。
基本信息
资源简介
包含外周血涂片的光学显微镜图像及红细胞、白细胞、血小板的边界框标注,可用于识别贫血相关的红细胞形态异常。
下载信息
注册下载
Tips: 该数据集需要在对应的数据源网站注册通过后,才能进行数据下载,注册有对应要求,或者需要收费。
暂未开放公开下载
Tips: 该数据集属于公开下载,应该可以免费公开下载。
免登录有偿下载
Tips: 该数据集 Qianfanghub 可以协助提供有偿下载服务,注意,服务不针对数据相关产权,只是技术服务费。
提供高速下载与技术交付服务(收技术服务费,非数据销售)
暂未开放千方医数集,医疗数据集部分,是为社区服务的公开医疗数据集搜索引擎,并不存储或者下载原始的任何数据。 如果您有其他医疗数据需求,可以和客服联系,或者下工单。我们有强大的三甲医疗机构帮助您提供个性化的医疗数据定制、采集、标注服务。
使用方式
数据集获取
git clone https://github.com/Shenggan/BCCD_Dataset.git
curl -L -o repo.zip https://github.com/Shenggan/BCCD_Dataset/archive/refs/heads/master.zip
unzip repo.zip
数据集大小约 0.08 GB。
源站 README 摘录(使用方式)
BCCD Dataset
BCCD Dataset is a small-scale dataset for blood cells detection.
Thanks the original data and annotations from cosmicad and akshaylamba. The original dataset is re-organized into VOC format. BCCD Dataset is under MIT licence.
You can download the .rec format for mxnet directly. The .rec file can be load by mxnet.image.ImageDetIter.
Data preparation
Data preparation is important to use machine learning. In this project, the Faster R-CNN algorithm from keras-frcnn for Object Detection is used.
From this dataset, nicolaschen1 developed two Python scripts to make preparation data (CSV file and images) for recognition of abnormalities in blood cells on medical images.
- export.py: it creates the file “test.csv” with all data needed: filename, class_name, x1,y1,x2,y2.
- plot.py: it plots the boxes for each image and save it in a new directory.
Overview of dataset
-
You can see a example of the labeled cell image.
We have three kind of labels :- RBC (Red Blood Cell)
- WBC (White Blood Cell)
- Platelets (血小板)
-
The structure of the
BCCD_dataset├── BCCD │ ├── Annotations │ │ └── BloodImage_00XYZ.xml (364 items) │ ├── ImageSets # Contain four Main/*.txt which split the dataset │ └── JPEGImages │ └── BloodImage_00XYZ.jpg (364 items) ├── dataset │ └── mxnet # Some preprocess scripts for mxnet ├── scripts │ ├── split.py # A script to generate four .txt in ImageSets │ └── visualize.py # A script to generate labeled img like example.jpg ├── example.jpg # A example labeled img generated by visualize.py ├── LICENSE └── README.md -
The
JPEGImages:- Image Type : jpeg(JPEG)
- Width x Height : 640 x 480
-
The
Annotations: The VOC format.xmlfor Object Detection, automatically generate by the label tools. Below is an example of.xmlfile.<annotation> <folder>JPEGImages</folder> <filename>BloodImage_00000.
数据加载示例(图像类)
from PIL import Image
import glob, os
files = (glob.glob(os.path.join(path, "**", "*.png"), recursive=True)
+ glob.glob(os.path.join(path, "**", "*.jpg"), recursive=True)
+ glob.glob(os.path.join(path, "**", "*.tif"), recursive=True))
print("图像文件数:", len(files))
img = Image.open(files[0]); print("尺寸/模式:", img.size, img.mode)
# torchvision Dataset 方式:
# from torchvision import datasets
# ds = datasets.ImageFolder(path) # 要求 子目录=类别
目录组织与标注格式以源站说明和下载后实际文件为准。
精度瓶颈?数据缺失?
当前公开数据无法满足您的算法精度?千方提供针对 贫血 的高质量、多模态真实临床数据定制解决方案。




