自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (1)
  • 问答 (1)
  • 收藏
  • 关注

原创 JAVA笔试读取任意输入的矩阵

【代码】JAVA笔试读取任意输入的矩阵。

2023-08-22 21:26:22 193

原创 C++判断给定点在不在多边形内部

判断给定点在不在多边形内部(C++)

2022-07-31 11:46:54 741 1

原创 查看期刊分区及影响因子

期刊分区及影响因子查看

2022-07-24 20:01:00 2360

原创 爬楼梯II dp问题

爬楼梯II

2022-07-24 19:21:48 294

原创 DETR测试自己数据的方法(facebook)

facebook的DETR用训练好的模型测试自己数据集的方法 demo

2022-07-16 08:50:33 1036 2

原创 仿牛客社区论坛第四次小结

仿牛客社区论坛第四次小结

2022-06-14 14:48:52 146

原创 仿牛客社区论坛第三次小结

仿牛客社区论坛第三次小结

2022-06-14 10:28:46 164

原创 仿牛客社区论坛第二次小结

仿牛客社区论坛第二次小结

2022-06-14 10:26:14 236

原创 仿牛客社区论坛第一次小结

仿牛客社区论坛学习笔记

2022-06-11 09:59:11 161

原创 异或和是质数的子集数

异或和是质数的子集数

2022-06-08 20:44:38 146

原创 Soft NMS改进的非极大值抑制方法的pytorch cuda版本,可以用

话不多说,直接上代码,代码是根据soft max论文提供的代码,修改的,原来的代码是cpu版本,且返回的keep参数并不是原来bbox的序列参数,所以做了部分修改,本人亲测pytorch版本的maskrcnn可用,提高了我的部分结果。def mine_soft_nms(boxes, sigma = 0.05, Nt = 0.3, threshold = 0.001, method = 2): “ori list is an order to log the bbox order!” N = boxes

2022-03-11 17:10:22 2249 1

原创 简单版Mask rcnn pytorch环境配置(ubuntu18.04)

ubuntu18.04配置maskrcnn pytorch(torch=0.4.0,cuda9.0)

2022-01-26 14:38:57 2662

原创 解决pycocotools的安装问题:No module named pycocotools

no module named pycocotools

2022-01-26 14:04:21 7696

原创 win10和win7系统配置faster rcnn(pytorch)

在win10和win7系统上配置faster rcnn(GPU)冲冲冲介绍我的环境配置过程1. 数据准备2. 把数据集放进VOCdevkit2007文件夹下,名字为VOC20073. 安装依赖包和pytorch1.4,这里的cuda版本是10.14. 编译!!windows的小伙伴一定都死在了这步!ubuntu编译就很顺利,windos它不行啊!下来就可以尝试运行了想说的话介绍最近实验室需要在win7系统上配置一个faster rcnn,实验需要,它就是不允许在ubuntu下使用。这里简单介绍一下自己的

2021-01-15 10:23:37 4884 42

转载 python.exe无法找到程序入口,anaconda新建环境或者卸载numpy的时候会报错,找不到动态库链接。

https://blog.csdn.net/weixin_44457768/article/details/105712070亲测方法二有效!

2020-10-26 10:59:32 490

原创 Mask RCNN环境配置中遇到的问题

error1:ValueError: The channel dimension of the inputs should be defined. Found None.解决方法:我是通过将tensorflow的后端由theano换成tensorflow(直接修改keras_init.py就可以,直接搜索就可以)。再在model = modellib.MaskRCNN(mode="inference", model_dir=MODEL_DIR, config=config)前加上如下的代码:import

2020-07-31 13:07:46 763

原创 c++程序设计第四周 大整数的加减乘除回顾

编程题#4:大整数的加减乘除来源: POJ (Coursera声明:在POJ上完成的习题将不会计入Coursera的最后成绩。)注意: 总时间限制: 1000ms 内存限制: 65536kB描述给出两个正整数以及四则运算操作符(+ - * /),求运算结果。输入第一行:正整数a,长度不超过100第二行:四则运算符o,o是“+”,“-”,“*”,“/”中的某一个第三行:正整数b,长度...

2020-04-01 18:38:05 728

原创 mmdetection之HybridTaskCascade训练自己的数据

前言mmdetection是商汤科技开源的open-mmlab之一,在mmdetection中提供了非常多的网络架构,除了YOLO,而我所使用的是HTC——HybridTaskCascade,其准确率相较于mask rcnn有较大的提高。现在我们来看看如何跑自己的HTC。开始1.安装open-mmlab环境,具体安装过程请移步其他博主的博客或者知乎,我安装的时候参考的知乎,非常详细,强调一...

2020-03-14 16:30:05 1354 1

原创 labelme格式转换coco2017格式数据(for HTC)

过程简介前言labelme是一款用来标注图片信息以用于作为数据集来训练识别算法,不少的博主都是使用labelme标注的数据集训练mask rcnn,确实很方便。但是有很多的网络只支持coco格式的数据集(比如我最近在使用的HTC——HybridTaskCascade,是一个mask map和bbox map都很高的网络,但是只支持coco2017格式的数据集),所以一起来回顾一下我的label...

2020-03-14 12:17:21 4667 2

【正版】ISO 9613-2-1996.pdf

The ISO 1996 series of standards specifies methods for the description of The ISO 1996 series of standards specifies methods for the description of The ISO 1996 series of standards specifies methods for the description of noise outdoors in community environments. Other standards, on the other hand, specify methods for determining the sound power levels emitted by various noise sources, such as machinery and specified equipment (ISO 3740 series), or industrial plants (ISO 8297). This part of ISO 9613 is intended to bridge the gap between these two types of standard, to en- able noise levels in the community to be predicted from sources of known sound emission. The method described in this part of ISO 9613 is general in the sense that it may be applied to a wide variety of noise sources, and covers most of the major mechanisms of attenuation. There are, however, constraints on its use, which arise principally from the description of en- vironmental noise in the ISO 1996 series of standards.

2020-04-06

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

TA关注的人

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