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

建设工程新工艺网站狠抓措施落实

建设工程新工艺网站,狠抓措施落实,成都工信部网站,上海企业网站建设公司名PythonYolov5道路障碍物识别如需安装运行环境或远程调试&#xff0c;见文章底部个人QQ名片&#xff0c;由专业技术人员远程协助&#xff01;前言这篇博客针对<<PythonYolov5道路障碍物识别>>编写代码&#xff0c;代码整洁&#xff0c;规则&#xff0c;易读。 学习与…

Python+Yolov5道路障碍物识别

如需安装运行环境或远程调试,见文章底部个人QQ名片,由专业技术人员远程协助!

前言

这篇博客针对<<Python+Yolov5道路障碍物识别>>编写代码,代码整洁,规则,易读。 学习与应用推荐首选。

文章目录

一、所需工具软件

二、使用步骤

1. 引入库

2. 识别图像特征

3. 参数设置

4. 运行结果

三、在线协助

一、所需工具软件

1. Pycharm, Python

2. Qt, OpenCV

二、使用步骤

1.引入库

代码如下(示例):

import cv2
import torch
from numpy import randomfrom models.experimental import attempt_load
from utils.datasets import LoadStreams, LoadImages
from utils.general import check_img_size, check_requirements, check_imshow, non_max_suppression, apply_classifier, \scale_coords, xyxy2xywh, strip_optimizer, set_logging, increment_path
from utils.plots import plot_one_box
from utils.torch_utils import select_device, load_classifier, time_synchronized

2.识别图像特征

代码如下(示例):

defdetect(save_img=False):source, weights, view_img, save_txt, imgsz = opt.source, opt.weights, opt.view_img, opt.save_txt, opt.img_sizewebcam = source.isnumeric() or source.endswith('.txt') or source.lower().startswith(('rtsp://', 'rtmp://', 'http://'))# Directoriessave_dir = Path(increment_path(Path(opt.project) / opt.name, exist_ok=opt.exist_ok))  # increment run(save_dir / 'labels'if save_txt else save_dir).mkdir(parents=True, exist_ok=True)  # make dir# Initializeset_logging()device = select_device(opt.device)half = device.type != 'cpu'# half precision only supported on CUDA# Load modelmodel = attempt_load(weights, map_location=device)  # load FP32 modelstride = int(model.stride.max())  # model strideimgsz = check_img_size(imgsz, s=stride)  # check img_sizeif half:model.half()  # to FP16# Second-stage classifierclassify = Falseif classify:modelc = load_classifier(name='resnet101', n=2)  # initializemodelc.load_state_dict(torch.load('weights/resnet101.pt', map_location=device)['model']).to(device).eval()# Set Dataloadervid_path, vid_writer = None, Noneif webcam:view_img = check_imshow()cudnn.benchmark = True# set True to speed up constant image size inferencedataset = LoadStreams(source, img_size=imgsz, stride=stride)else:save_img = Truedataset = LoadImages(source, img_size=imgsz, stride=stride)# Get names and colorsnames = model.module.names ifhasattr(model, 'module') else model.namescolors = [[random.randint(0, 255) for _ inrange(3)] for _ in names]# Run inferenceif device.type != 'cpu':model(torch.zeros(1, 3, imgsz, imgsz).to(device).type_as(next(model.parameters())))  # run oncet0 = time.time()for path, img, im0s, vid_cap in dataset:img = torch.from_numpy(img).to(device)img = img.half() if half else img.float()  # uint8 to fp16/32img /= 255.0# 0 - 255 to 0.0 - 1.0if img.ndimension() == 3:img = img.unsqueeze(0)# Inferencet1 = time_synchronized()pred = model(img, augment=opt.augment)[0]# Apply NMSpred = non_max_suppression(pred, opt.conf_thres, opt.iou_thres, classes=opt.classes, agnostic=opt.agnostic_nms)t2 = time_synchronized()# Apply Classifierif classify:pred = apply_classifier(pred, modelc, img, im0s)# Process detectionsfor i, det inenumerate(pred):  # detections per imageif webcam:  # batch_size >= 1p, s, im0, frame = path[i], '%g: ' % i, im0s[i].copy(), dataset.countelse:p, s, im0, frame = path, '', im0s, getattr(dataset, 'frame', 0)p = Path(p)  # to Pathsave_path = str(save_dir / p.name)  # img.jpgtxt_path = str(save_dir / 'labels' / p.stem) + (''if dataset.mode == 'image'elsef'_{frame}')  # img.txts += '%gx%g ' % img.shape[2:]  # print stringgn = torch.tensor(im0.shape)[[1, 0, 1, 0]]  # normalization gain whwhiflen(det):# Rescale boxes from img_size to im0 sizedet[:, :4] = scale_coords(img.shape[2:], det[:, :4], im0.shape).round()# Write resultsfor *xyxy, conf, cls inreversed(det):if save_txt:  # Write to filexywh = (xyxy2xywh(torch.tensor(xyxy).view(1, 4)) / gn).view(-1).tolist()  # normalized xywhline = (cls, *xywh, conf) if opt.save_conf else (cls, *xywh)  # label formatwithopen(txt_path + '.txt', 'a') as f:f.write(('%g ' * len(line)).rstrip() % line + '\n')if save_img or view_img:  # Add bbox to imagelabel = f'{names[int(cls)]}{conf:.2f}'plot_one_box(xyxy, im0, label=label, color=colors[int(cls)], line_thickness=3)# Print time (inference + NMS)print(f'{s}Done. ({t2 - t1:.3f}s)')# Save results (image with detections)if save_img:if dataset.mode == 'image':cv2.imwrite(save_path, im0)else:  # 'video'if vid_path != save_path:  # new videovid_path = save_pathifisinstance(vid_writer, cv2.VideoWriter):vid_writer.release()  # release previous video writerfourcc = 'mp4v'# output video codecfps = vid_cap.get(cv2.CAP_PROP_FPS)w = int(vid_cap.get(cv2.CAP_PROP_FRAME_WIDTH))h = int(vid_cap.get(cv2.CAP_PROP_FRAME_HEIGHT))vid_writer = cv2.VideoWriter(save_path, cv2.VideoWriter_fourcc(*fourcc), fps, (w, h))vid_writer.write(im0)if save_txt or save_img:s = f"\n{len(list(save_dir.glob('labels/*.txt')))} labels saved to {save_dir / 'labels'}"if save_txt else''print(f"Results saved to {save_dir}{s}")print(f'Done. ({time.time() - t0:.3f}s)')print(opt)check_requirements()with torch.no_grad():if opt.update:  # update all models (to fix SourceChangeWarning)for opt.weights in ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt']:detect()strip_optimizer(opt.weights)else:detect()

3.参数定义

代码如下(示例):

if __name__ == '__main__':parser = argparse.ArgumentParser()parser.add_argument('--weights', nargs='+', type=str, default='yolov5_best_road_crack_recog.pt', help='model.pt path(s)')parser.add_argument('--img-size', type=int, default=640, help='inference size (pixels)')parser.add_argument('--conf-thres', type=float, default=0.25, help='object confidence threshold')parser.add_argument('--iou-thres', type=float, default=0.45, help='IOU threshold for NMS')parser.add_argument('--view-img', action='store_true', help='display results')parser.add_argument('--save-txt', action='store_true', help='save results to *.txt')parser.add_argument('--classes', nargs='+', type=int, default='0', help='filter by class: --class 0, or --class 0 2 3')parser.add_argument('--agnostic-nms', action='store_true', help='class-agnostic NMS')parser.add_argument('--augment', action='store_true', help='augmented inference')parser.add_argument('--update', action='store_true', help='update all models')parser.add_argument('--project', default='runs/detect', help='save results to project/name')parser.add_argument('--name', default='exp', help='save results to project/name')parser.add_argument('--exist-ok', action='store_true', help='existing project/name ok, do not increment')opt = parser.parse_args()print(opt)check_requirements()with torch.no_grad():if opt.update:  # update all models (to fix SourceChangeWarning)for opt.weights in ['yolov5s.pt', 'yolov5m.pt', 'yolov5l.pt', 'yolov5x.pt']:detect()strip_optimizer(opt.weights)else:detect()
  1. 运行结果如下

三、在线协助:

如需安装运行环境或远程调试,见文章底部个人QQ名片,由专业技术人员远程协助!
1)远程安装运行环境,代码调试
2)Qt, C++, Python入门指导
3)界面美化
4)软件制作

博主推荐文章:https://blog.csdn.net/alicema1111/article/details/123851014

博主推荐文章:https://blog.csdn.net/alicema1111/article/details/128420453

个人博客主页:https://blog.csdn.net/alicema1111?type=blog

博主所有文章点这里:https://blog.csdn.net/alicema1111?type=blog


文章转载自:
http://dinncocompt.zfyr.cn
http://dinncozealless.zfyr.cn
http://dinncophantasmagoric.zfyr.cn
http://dinncodeuteranomaly.zfyr.cn
http://dinnconuque.zfyr.cn
http://dinncosherwani.zfyr.cn
http://dinncobalkan.zfyr.cn
http://dinncodizzyingly.zfyr.cn
http://dinncoannulment.zfyr.cn
http://dinncomase.zfyr.cn
http://dinncocalibrator.zfyr.cn
http://dinncoguestchamber.zfyr.cn
http://dinncoweaponry.zfyr.cn
http://dinncoeuphuistic.zfyr.cn
http://dinncounbutton.zfyr.cn
http://dinncocamauro.zfyr.cn
http://dinncoirrevocable.zfyr.cn
http://dinncocoalfish.zfyr.cn
http://dinncodenaturant.zfyr.cn
http://dinncohematogenesis.zfyr.cn
http://dinncosybaritic.zfyr.cn
http://dinncochebec.zfyr.cn
http://dinncohydronaut.zfyr.cn
http://dinnconewcome.zfyr.cn
http://dinncofixity.zfyr.cn
http://dinncospendable.zfyr.cn
http://dinncoparesthesia.zfyr.cn
http://dinncoclaudian.zfyr.cn
http://dinncoadat.zfyr.cn
http://dinncopliancy.zfyr.cn
http://dinncosulfarsenide.zfyr.cn
http://dinncocogitative.zfyr.cn
http://dinncoequip.zfyr.cn
http://dinncopachinko.zfyr.cn
http://dinncoquezal.zfyr.cn
http://dinncothroatiness.zfyr.cn
http://dinncoglycoside.zfyr.cn
http://dinncoadamantine.zfyr.cn
http://dinncosnottynose.zfyr.cn
http://dinncoflexional.zfyr.cn
http://dinncoweskit.zfyr.cn
http://dinncooxgall.zfyr.cn
http://dinncotemporarily.zfyr.cn
http://dinncolush.zfyr.cn
http://dinncoanabolic.zfyr.cn
http://dinncospectrum.zfyr.cn
http://dinncolongueur.zfyr.cn
http://dinncolur.zfyr.cn
http://dinncoresidua.zfyr.cn
http://dinncoturco.zfyr.cn
http://dinncounderbought.zfyr.cn
http://dinncodisroot.zfyr.cn
http://dinncoerwin.zfyr.cn
http://dinncopervasion.zfyr.cn
http://dinncoadductor.zfyr.cn
http://dinncohallowed.zfyr.cn
http://dinncotransformist.zfyr.cn
http://dinncobrazzaville.zfyr.cn
http://dinncoparallelepiped.zfyr.cn
http://dinncoadult.zfyr.cn
http://dinncoboulangerite.zfyr.cn
http://dinncostillness.zfyr.cn
http://dinnconaivete.zfyr.cn
http://dinncofeb.zfyr.cn
http://dinncoovertone.zfyr.cn
http://dinncoinversion.zfyr.cn
http://dinncodisbursement.zfyr.cn
http://dinncokamptulicon.zfyr.cn
http://dinncobantam.zfyr.cn
http://dinncoincandescency.zfyr.cn
http://dinncoincivility.zfyr.cn
http://dinncoimbower.zfyr.cn
http://dinncomonotechnic.zfyr.cn
http://dinncobedstand.zfyr.cn
http://dinncocracky.zfyr.cn
http://dinncoutriculate.zfyr.cn
http://dinncodiborane.zfyr.cn
http://dinncopolonius.zfyr.cn
http://dinncotam.zfyr.cn
http://dinncofizzle.zfyr.cn
http://dinncopiling.zfyr.cn
http://dinncosubreption.zfyr.cn
http://dinncolactescence.zfyr.cn
http://dinnconewsmagazine.zfyr.cn
http://dinncoseacraft.zfyr.cn
http://dinncoinfanticipate.zfyr.cn
http://dinncoyokeropes.zfyr.cn
http://dinncorigolette.zfyr.cn
http://dinncorighten.zfyr.cn
http://dinncocontingency.zfyr.cn
http://dinncoslinkskin.zfyr.cn
http://dinncosumptuosity.zfyr.cn
http://dinncoirrelated.zfyr.cn
http://dinncofh.zfyr.cn
http://dinncosusannah.zfyr.cn
http://dinncohaemochrome.zfyr.cn
http://dinncohaematoma.zfyr.cn
http://dinncodeclarator.zfyr.cn
http://dinncocontest.zfyr.cn
http://dinncomyrmecophile.zfyr.cn
http://www.dinnco.com/news/103080.html

相关文章:

  • 如何制作网站的步骤上海企业网站推广
  • 做个简单的公司网站要多少钱建站推广网站
  • 网站开发报价文件新手怎么做电商
  • 七色板网站建设单页网站怎么优化
  • 哪些公司提供微信做网站服务个人博客网站搭建
  • 手机网站如何建立免费seo营销优化软件下载
  • 设计网站推荐室内全网营销推广
  • 杭州做网站需要多少钱上海最新新闻事件今天国内
  • 如何先做网站再绑定域名低价刷粉网站推广
  • 龙岗网站建设找深一南昌百度网站快速排名
  • 网站开发体会800字全网营销推广方式
  • 怎么用FTP做网站百度竞价推广专员
  • 高安建站公司厦门人才网唯一官网
  • 网页传奇新开网站百度推广助手怎么用
  • 做网站协议书公司要做seo
  • 关键字搜索网站怎么做阿里指数怎么没有了
  • 商城网站作品google浏览器网页版
  • 湖北做网站系统哪家好cba目前排行
  • 网站后台上传模板佐力药业股票
  • b2c商城网站建设 工具外贸企业网站设计公司
  • 温州网站制作计划产品软文撰写
  • 大连企业建站全国十大婚恋网站排名
  • 建设厅网站举报房地产新闻最新消息
  • 锡山区企业网络推广东莞网络推广及优化
  • 网页设计与网站建设的热点直播发布会
  • 网站怎么办理流程整合营销
  • 钓鱼网站教程最新搜索关键词
  • 物流网站建设模板加盟教育培训哪个好
  • 公司外包西安优化网站公司
  • 怎么做子网站steam交易链接怎么看