04 2018 档案

摘要:首先放出大佬的项目地址:https://github.com/yangxue0827/R2CNN_FPN_Tensorflow 那么从输入的数据开始吧,输入的数据要求为tfrecord格式的数据集,好在大佬在项目里已经给出了相应的代码,不过需要的原始数据为VOC格式,这里,我在以前的笔记里保存了普通 阅读全文
posted @ 2018-04-29 09:45 fourmii 阅读(3917) 评论(5) 推荐(0) 编辑
摘要:#split.py 文件 输入格式为images ,和标签txt文件,txt中的数据为坐标值共8个。 import os import numpy as np import math import cv2 as cv import imageio #path = '/media/D/code/OCR/text-detection-ctpn/data/mlt_english+chinese/i... 阅读全文
posted @ 2018-04-25 21:27 fourmii 阅读(2570) 评论(1) 推荐(0) 编辑
摘要:进行文本的检测的学习,开始使用的是ctpn网络,由于ctpn只能检测水平的文字,而对场景图片中倾斜的文本无法进行很好的检测,故将网络换为RRCNN(全称如题)。小白一枚,这里就将RRCNN的论文拿来拜读一下,也记录一下自己阅读过程中的收获。 原英文论文网址:https://arxiv.org/abs 阅读全文
posted @ 2018-04-25 16:23 fourmii 阅读(1775) 评论(0) 推荐(0) 编辑
摘要:import re from numpy import * def getStr(file_path,file_path1): fp = open(file_path, 'r') op = open(file_path1,'w') for eachline in fp.readlines(): lines = re.split("\t| |\n",each... 阅读全文
posted @ 2018-04-24 18:49 fourmii 阅读(5341) 评论(0) 推荐(1) 编辑
摘要:结果图: 参考:https://www.cnblogs.com/HongYi-Liang/p/7172345.html?utm_source=itdadao&utm_medium=referral 2018-04-2215:46:49 阅读全文
posted @ 2018-04-22 15:47 fourmii 阅读(1094) 评论(0) 推荐(0) 编辑
摘要:参考:https://blog.csdn.net/ebowtang/article/details/43094041 代码运行结果图: 2018-04-2211:13:09 阅读全文
posted @ 2018-04-22 11:14 fourmii 阅读(3205) 评论(0) 推荐(0) 编辑
摘要:labelme_to_dataset 指令的代码实现: show.py文件 myHe.m 文件 阅读全文
posted @ 2018-04-18 15:03 fourmii 阅读(6731) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2018-04-15 19:04 fourmii 阅读(0) 评论(0) 推荐(0) 编辑