绝区零一条龙:5分钟掌握全自动游戏辅助的终极配置方案
2026/7/30 10:27:39
【免费下载链接】elpv-datasetA dataset of functional and defective solar cells extracted from EL images of solar modules项目地址: https://gitcode.com/gh_mirrors/el/elpv-dataset
ELPV-Dataset是一个专注于太阳能电池缺陷识别的专业数据集,包含2624张标准化的电致发光图像,涵盖单晶和多晶两种类型的太阳能电池,每张图像均标注缺陷概率和电池类型,是训练视觉识别模型的理想选择。
图:ELPV-Dataset数据集样本展示,红色越深表示缺陷概率越高
每张图像包含双重标注:
pip install elpv-datasetfrom elpv_dataset.utils import load_dataset images, proba, types = load_dataset()images:numpy数组格式的图像数据proba:对应图像的缺陷概率数组types:电池类型标签数组('mono'或'poly')# 简单逻辑回归模型示例(完整实现需添加预处理步骤) from sklearn.linear_model import LogisticRegression from sklearn.model_selection import train_test_split # 将图像数据展平为一维特征 X = images.reshape(images.shape[0], -1) y = (proba > 0.5).astype(int) # 将概率转换为二分类标签 # 划分训练集和测试集 X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2) # 训练模型 model = LogisticRegression(max_iter=1000) model.fit(X_train, y_train) # 评估模型 accuracy = model.score(X_test, y_test) print(f"模型准确率: {accuracy:.2f}")src/elpv_dataset/ ├── data/ │ ├── images/ # 所有太阳能电池图像(cell0001.png至cell2623.png) │ └── labels.csv # 图像标注文件(包含缺陷概率和电池类型) ├── __init__.py # 包初始化文件 ├── __about__.py # 项目元信息 └── utils.py # 数据加载工具函数src/elpv_dataset/data/src/elpv_dataset/utils.py中的load_dataset()函数如果在研究中使用该数据集,请引用以下文献:
@InProceedings{Buerhop2018, author = {Buerhop-Lutz, Claudia and Deitsch, Sergiu and Maier, Andreas and Gallwitz, Florian and Berger, Stephan and Doll, Bernd and Hauch, Jens and Camus, Christian and Brabec, Christoph J.}, title = {A Benchmark for Visual Identification of Defective Solar Cells in Electroluminescence Imagery}, booktitle = {European PV Solar Energy Conference and Exhibition (EU PVSEC)}, year = {2018}, doi = {10.4229/35thEUPVSEC20182018-5CV.3.15}, }git clone https://gitcode.com/gh_mirrors/el/elpv-dataset无论是光伏行业从业者开发质量检测系统,还是机器学习爱好者入门视觉识别项目,ELPV-Dataset都能为你提供高质量的标注数据和便捷的使用体验。通过本数据集,你可以快速构建太阳能电池缺陷检测模型,推动光伏产业的智能化升级。
【免费下载链接】elpv-datasetA dataset of functional and defective solar cells extracted from EL images of solar modules项目地址: https://gitcode.com/gh_mirrors/el/elpv-dataset
创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考