自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 收藏
  • 关注

原创 【无标题】

安装 pycocotools库

2022-08-04 11:55:46 131 1

原创 YOLO分析《Performance Validation of Yolo Variants for Object Detection》

目标检测是智能监控系统的核心部分,是身份识别领域的基础算法,具有重要的现实意义。由于YOLO系列算法在准确率和速度上都取得了不错的成绩,YOLO和后续的各个版本都在不断超越。因此,在本文中,它对 yolov3、yolov4 和 yolov5 三个版本的流行 YOLO 模型(yolov5l、yolov5m、yolov5s、yolov5x)进行了实验。通过对公共 VOC 数据集的训练和预测,分析总结了三个版本的 YOLO 模型的性能。结果表明,yolov4模型的mAP值高于yolov3模型,但速度略低,而yol

2022-04-14 20:24:46 161

原创 基于PCA的图像融合(python)

#!/usr/bin/env python# encoding: utf-8import osfrom ImageFusion import ImageFusionfrom PIL import Imageimport numpy as npimport pylab as pltimport cv2import timeall_folds1 = os.listdir(r'D:\data-5000\S-GS-500/')all_folds2 = os.listdir(r'D:\data-5

2022-04-12 22:03:39 2212 5

原创 基于小波变换的图像融合(python)

话不多说,直接上代码import pywtimport cv2import numpy as npimport time# This function does the coefficient fusing according to the fusion methoddef fuseCoeff(cooef1, cooef2,cooef3,cooef4, method): if (method == 'mean'): cooef = (cooef1 + cooef2 + c

2022-04-12 22:00:58 2215 1

原创 深度学习入门

https://www.zybuluo.com/hanbingtao/note/433855

2022-02-28 15:31:58 384

原创 sobel

Sobel算法代码(python)import numpy as npimport imageio#先获取灰度图def rgb2gray(rgb):“”"convert rgb image into grayArgs:rgb: grb image with numpy typeReturns:gray: gray image“”"gray = rgb[:, :, 0] * 0.299 + rgb[:, :, 1] * 0.587 + rgb[:, :, 2] * 0.114retu

2021-05-13 11:04:04 163

原创 **YOLO系列制作标签文件随笔小知识**

**YOLO系列制作标签文件随笔小知识**遇到了‘’AttributeError: NoneType object has no attribute‘’这种报错问题,不要慌,先抽根烟冷静一下。先看看自己的源代码中是否有:difficult = obj.find(‘difficult’).text这样的字样,有的话,这个就是问题来源。再看一下标签文件中格式是否是这样:1Unspecified00如,格式中没有Difficult字样,就直接把代码中出现...

2021-04-12 15:05:08 228

原创 视频加字幕

**给自己拍的视频加字幕**ArcTime Pro 软件贼牛批,谁用谁知道下载地址:http://arctime.cn/download.html如果那里不会可以找这位大神的讲解视频:https://www.bilibili.com/video/BV1cC4y1x7xs?from=search&seid=4392222327091511091...

2021-03-31 16:43:16 117

原创 安装cv2(python)

这里写自定义目录标题针对无法导入cv2模块问题,或者出现ERROR: Could not find a version that satisfies the requirement cv2 (from versions: none)的报错,可以在cmd中输入以下命令:pip3 install opencv,如果还不行,试着在Python的Terminal里面输入:pip3 install opencv-python。等待安装成功就可以了。C:\Users\admin\PycharmProjects\py

2021-03-10 20:11:20 389 2

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除