上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页
摘要: 若使用keras框架直接编辑函数调用会导致编译错误。因此,有2种方法可以实现keras的调用,其一使用lamda函数调用, 其二使用继承Layer层调用(如下代码)。如果使用继承layer层调用,那你可以将你想要实现的方式,通过call函数编辑,而 call函数的参数一般为输入特征变量[batch, 阅读全文
posted @ 2020-05-06 22:05 tangjunjun 阅读(3131) 评论(0) 推荐(0) 编辑
摘要: Python 字典(Dictionary) get() 函数返回指定键的值,如果值不在字典中返回默认值。 dict.get(key, default=None) 默认函数输入键值,将返回value,如字典a={1:4,'ok':78}若a.get(1)返回4, 若a.get(‘ok’)返回78. 阅读全文
posted @ 2020-05-06 21:38 tangjunjun 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: 目前使用yolo系列算法较多,特别是今年yolo4的出现,是我们异常兴奋,但鉴于某些数据集使用xml标注的数据,未能转换成train.txt文件,为此,我写了一份xml文件读取,并将其转换为yolo等训练所需要的格式。希望对读者有些帮助与启示。本博客仅展示代码与结果图片。 代码如下: def rea 阅读全文
posted @ 2020-05-06 00:33 tangjunjun 阅读(1249) 评论(0) 推荐(0) 编辑
摘要: 此代码是我对maskrcnn的一些修改,基本还原所有内容,但更加简洁,使代码更易解读。里面有很多注释,非常详细,可自己慢慢品味。 若有一些问题,欢迎指正与交流。 此代码为训练文件.py """MASKRCNN algrithm for object detection and instance se 阅读全文
posted @ 2020-04-27 21:39 tangjunjun 阅读(6702) 评论(0) 推荐(0) 编辑
摘要: 此代码是我给我朋友写的,如果有人做平行机台订单接受方向或者论文,可以参考此代码,希望对读者有帮助和启示! 可复制直接运行,无需修改! /* PSO algrithm for accept order and schedule Written by tang jun on February 20, 2 阅读全文
posted @ 2020-04-27 21:19 tangjunjun 阅读(297) 评论(0) 推荐(0) 编辑
摘要: import cv2 as cvimport numpy as npimport osimport skimage.iopath_img=r'D:\data\compay_build\img' # 切割图像路径path_label=r'D:\data\compay_build\label' # 切割 阅读全文
posted @ 2020-04-16 18:08 tangjunjun 阅读(206) 评论(0) 推荐(0) 编辑
摘要: import ospath = 'C:/Users/tj/Desktop/dd' # path为labelme标注后的.json文件存放的路径json_file = os.listdir(path)for file in json_file: os.system("C:/soft/ev4/venv/ 阅读全文
posted @ 2020-04-16 09:44 tangjunjun 阅读(2861) 评论(0) 推荐(0) 编辑
摘要: 中文名称读取与保存方式如下主代码: img = cv2.imdecode(np.fromfile(data_root, dtype=np.uint8), -1)#中文名读取方式 cv2.imencode('.jpg', img_draw)[1].tofile(os.path.join(out_img 阅读全文
posted @ 2020-04-16 09:16 tangjunjun 阅读(325) 评论(0) 推荐(0) 编辑
摘要: import numpy as np# 如果使用labelme打标import skimagefrom PIL import Imageimport yamlimport osimport cv2 as cvdef extract_bboxes(mask): # [[num_instances, ( 阅读全文
posted @ 2020-03-03 22:23 tangjunjun 阅读(1245) 评论(0) 推荐(0) 编辑
摘要: 文字内容以后再补充: import numpy as np# 定义Box类,描述bounding box的坐标class Box(): def __init__(self, x, y, w, h): self.x = x self.y = y self.w = w self.h = hdef box 阅读全文
posted @ 2020-03-01 23:39 tangjunjun 阅读(1045) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 19 下一页
https://rpc.cnblogs.com/metaweblog/tangjunjun