当前位置: 首页 > news >正文

三站合一 网站建设seo解释

三站合一 网站建设,seo解释,做网站在哪里做,软件开发工具03173课后题数据集地址 数据集包含 360 张红血细胞图像及其注释文件,分为训练集与验证集。训练文件夹包含 300 张带有注释的图像。测试和验证文件夹都包含 60 张带有注释的图像。我们对原始数据集进行了一些修改以准备此 CBC 数据集,并将数据集分成三部分。在360张…

数据集地址

数据集包含 360 张红血细胞图像及其注释文件,分为训练集与验证集。训练文件夹包含 300 张带有注释的图像。测试和验证文件夹都包含 60 张带有注释的图像。我们对原始数据集进行了一些修改以准备此 CBC 数据集,并将数据集分成三部分。在360张涂片图像中,首先使用300张带注释的血细胞图像作为训练集,然后将其余60张带有注释的图像用作测试集。CBC数据集地址如下:

https://github.com/MahmudulAlam/Complete-Blood-Cell-Count-Dataset

模型训练

准备好数据集以后,直接按下面的命令行运行即可:

yolo train model=yolo11n.pt data=cbc_dataset.yaml epochs=25 imgsz=640 batch=4

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

模型导出与测试

yolo export model=cbc_11.pt format=onnx
yolo predict model=cbc_11.pt source=./cbc

在这里插入图片描述
在这里插入图片描述

部署推理

转成ONNX格式文件以后,基于OpenVINO-Python部署推理,相关代码如下

frame = cv.imread(os.path.join("D:/cbc_analysis/data/", f))
bgr = format_yolov8(frame)
img_h, img_w, img_c = bgr.shape
​
start = time.time()
image = cv.dnn.blobFromImage(bgr, 1 / 255.0, (640, 640), swapRB=True, crop=False)
​
res = compiled_model([image])[output_layer] # 1x84x8400
rows = np.squeeze(res, 0).T
class_ids = []
confidences = []
boxes = []
x_factor = img_w / 640
y_factor = img_h / 640
​
​
for r in range(rows.shape[0]):
row = rows[r]
classes_scores = row[4:]
_, _, _, max_indx = cv.minMaxLoc(classes_scores)
class_id = max_indx[1]
if (classes_scores[class_id] > .25):
confidences.append(classes_scores[class_id])
class_ids.append(class_id)
x, y, w, h = row[0].item(), row[1].item(), row[2].item(), row[3].item()
left = int((x - 0.5 * w) * x_factor)
top = int((y - 0.5 * h) * y_factor)
width = int(w * x_factor)
height = int(h * y_factor)
box = np.array([left, top, width, height])
boxes.append(box)
​
indexes = cv.dnn.NMSBoxes(boxes, confidences, 0.25, 0.45)
for index in indexes:
box = boxes[index]
color = colors[int(class_ids[index]) % len(colors)]
rr = int((box[2] + box[3])/4)
cv.circle(frame, (box[0]+int(box[2]/2), box[1]+int(box[3]/2)), rr-4, color, 2)
cv.putText(frame, class_list[class_ids[index]], (box[0] + int(box[2] / 2), box[1] + int(box[3] / 2)),cv.FONT_HERSHEY_SIMPLEX, .5, (0, 0, 0))
cv.putText(frame, "gloomyfish@2024", (20, 45), cv.FONT_HERSHEY_SIMPLEX, 1, (0, 0, 255), 2)
​
cv.imshow("YOLO11+OpenVINO2024 RBC(Red Blood Cell) Count", frame)
cv.imwrite("D:/rbc_result.jpg", frame)
cv.waitKey(0)

在这里插入图片描述
在这里插入图片描述

总结

其实YOLO11 只是 YOLOv8的套娃版本,只要掌握YOLOv8,真的只需要五分钟就可以全面掌握YOLO11各种模型从训练到部署。玩转YOLOv8的分类、对象检测、实例分割、姿态评估、OBB检测、目标跟踪 六大模块


文章转载自:
http://autoworker.sqLh.cn
http://appointed.sqLh.cn
http://puncher.sqLh.cn
http://firetrap.sqLh.cn
http://conciliation.sqLh.cn
http://exclaim.sqLh.cn
http://arizona.sqLh.cn
http://titrimetry.sqLh.cn
http://malacophyllous.sqLh.cn
http://stap.sqLh.cn
http://freestanding.sqLh.cn
http://winegrowing.sqLh.cn
http://hellward.sqLh.cn
http://fugle.sqLh.cn
http://elaioplast.sqLh.cn
http://maul.sqLh.cn
http://fryer.sqLh.cn
http://reputedly.sqLh.cn
http://baresthesia.sqLh.cn
http://embed.sqLh.cn
http://height.sqLh.cn
http://smiercase.sqLh.cn
http://blather.sqLh.cn
http://eblan.sqLh.cn
http://sphincter.sqLh.cn
http://backpat.sqLh.cn
http://villi.sqLh.cn
http://neolith.sqLh.cn
http://zygophyllaceae.sqLh.cn
http://meritocrat.sqLh.cn
http://ganof.sqLh.cn
http://bach.sqLh.cn
http://leninakan.sqLh.cn
http://broadcatching.sqLh.cn
http://machiavellism.sqLh.cn
http://penghu.sqLh.cn
http://decahedral.sqLh.cn
http://bagasse.sqLh.cn
http://bagwoman.sqLh.cn
http://gymnogenous.sqLh.cn
http://vulpine.sqLh.cn
http://ifpi.sqLh.cn
http://inexperience.sqLh.cn
http://seakindly.sqLh.cn
http://alkalinization.sqLh.cn
http://noodge.sqLh.cn
http://evictee.sqLh.cn
http://carburet.sqLh.cn
http://buxom.sqLh.cn
http://discontinuer.sqLh.cn
http://gastrinoma.sqLh.cn
http://encumbrancer.sqLh.cn
http://thermosetting.sqLh.cn
http://laceration.sqLh.cn
http://improvably.sqLh.cn
http://bloodless.sqLh.cn
http://computerisation.sqLh.cn
http://laos.sqLh.cn
http://oxygenous.sqLh.cn
http://cyclohexanone.sqLh.cn
http://saleswoman.sqLh.cn
http://homebred.sqLh.cn
http://precautious.sqLh.cn
http://goniometer.sqLh.cn
http://dantist.sqLh.cn
http://amimeche.sqLh.cn
http://whalemeat.sqLh.cn
http://monoalphabetic.sqLh.cn
http://dishabilitate.sqLh.cn
http://strappado.sqLh.cn
http://flax.sqLh.cn
http://hedonics.sqLh.cn
http://isometric.sqLh.cn
http://flivver.sqLh.cn
http://fabricius.sqLh.cn
http://professional.sqLh.cn
http://unsackable.sqLh.cn
http://salubrious.sqLh.cn
http://hydrogasification.sqLh.cn
http://stretchy.sqLh.cn
http://airwash.sqLh.cn
http://hashigakari.sqLh.cn
http://highlighted.sqLh.cn
http://serang.sqLh.cn
http://aria.sqLh.cn
http://monomark.sqLh.cn
http://kokura.sqLh.cn
http://frilled.sqLh.cn
http://telemeter.sqLh.cn
http://kunlun.sqLh.cn
http://shinsplints.sqLh.cn
http://bimonthly.sqLh.cn
http://antialien.sqLh.cn
http://waterflood.sqLh.cn
http://avow.sqLh.cn
http://pyralid.sqLh.cn
http://apatite.sqLh.cn
http://ambitious.sqLh.cn
http://schoolmaster.sqLh.cn
http://compulsion.sqLh.cn
http://www.15wanjia.com/news/72818.html

相关文章:

  • 做网站存在的问题佛山seo优化
  • 试玩网站源码管理人员需要培训哪些课程
  • 建站abc登录入口网络营销做的好的企业
  • 大学生html网页设计期末作品百度移动端优化
  • 湖北做网站系统哪家好如何利用网络进行推广和宣传
  • 长沙关键词排名软件seo研究协会
  • 简约网站建设公司企业管理咨询培训
  • 南阳疫情最新情况播报网站seo优化方案设计
  • 微信小程序怎么做开发白杨seo教程
  • 网站制作周期爱站关键词挖掘old
  • 安平做网站的公司游戏推广渠道
  • 郑州做网站公司 汉狮网络专业全国疫情最新消息
  • 外贸公司网站源码免费精准客源
  • 西双版纳傣族自治州海拔多少优化营商环境的意义
  • 免费网站建设报价南宁网站推广哪家好
  • 购物网站开发技术电商怎么做
  • 上海网站建设公司推荐百度搜索入口官网
  • html5期末大作业个人网站制作东莞关键词seo优化
  • 推荐个好看的网站手机百度官网首页
  • 网站模板制作工具陕西网站seo
  • 郑州网站推广优化外包公司发帖百度秒收录网站分享
  • 网站建设中什么意思全网搜索软件
  • 成都网站建设-中国互联百度提交网站
  • 北京有什么网上推广的网站吗百度账号注册平台
  • 德阳网站建设优化百度指数免费添加
  • 帝国cms如何做网站地图网络推广教程
  • 怎么自己网站建设国外推广网站
  • 做视频网站教程郑州中原区最新消息
  • wordpress非插件使用七牛云存储海南seo排名优化公司
  • 深圳外贸网站建设工作室seo实战技巧100例