LiuDongdong

爱好由来落笔难,一诗千改心始安。

BatchNormalization

1. Internal Covariate Shift 统计学习中的一个很重要的假设就是输入的分布是相对稳定的。如果这个假设不满足,则模型的收敛会很慢,甚至无法收敛。所以,对于一般的统计学

OpencvExample

1. 车牌识别 import cv2 import imutils import numpy as np import pytesseract pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files (x86)\Tesseract-OCR\tesseract.exe' img = cv2.imread('D://skoda1.jpg',cv2.IMREAD_COLOR) img = cv2.resize(img, (600,400) ) gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) #使用双边滤波(模糊)会从图像中删除不需要的细节。 gray = cv2.bilateralFilter(gray, 13, 15, 15) edged = cv2.Canny(gray, 30, 200) contours =

笔记合成

Facebook AI最新出品的“文字风格刷”(TextStyleBrush),它只需要一张笔迹的照片,就能完美还原出一整套文本字迹来。为了同时实现图像分割

OCRRelative

Ray Smith, Daria Antonova, and Dar-Shyang Lee. 2009. Adapting the Tesseract open source OCR engine for multilingual OCR. In Proceedings of the International Workshop on Multilingual OCR (MOCR ‘09). Association for Computing Machinery, New York, NY, USA, Article 1, 1–8. DOI:https://doi.org/10.1145/1577802.1577804 Paper: Tesseract Open Source OCR Engine Summary 遗留问题:对于识别低的词怎么合理去掉的

MQTT

ThingsBoard is an open-source IoT platform that enables rapid development, management and scaling of IoT projects. Our goal is to provide the out-of-the-box IoT cloud or on-premises solution that will enable server-side infrastructure for your IoT applications. 1. ThingsBoard 1.1. ConnectProtocol 2. Features 2.1. Entities&&Relations 【Entities】 Tenants: individual or organization who owns or produce devices and assets; have multiple tenant administrator users and customers. Customers: who purchase or use tenant devices or assets; have multiple users and devices or assets; Users: browse dashboards and manage entities; Devices: basic IoT entities,like sensors, actuators, switches; Assets: abstract IoT entities may be related to other devices and assets,like factory, field, vehicle; Alarms: events Dashboards: visualization of data and user control interface; Rule Chain: logic unit of related Rule Nodes; each entity supports:

Bazel

Bazel builds software from source code organized in a directory called a workspace. Source files in the workspace are organized in a nested hierarchy of packages, where each package is a directory that contains a set of related source files and one BUILD file. The BUILD file specifies what software outputs can be built from the source. 1.Introduce 1.1. Features High-level build language fast and reliable multi-platform large scales and
0%