{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Text Detection Algorithm Theory\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1 Text Detection\n", "\n", "The task of text detection is to find out the position of text in an image or video. Different from the task of target detection, target detection must not only solve the positioning problem, but also solve the problem of target classification.\n", "\n", "The manifestation of text in images can be regarded as a kind of 'target', and general target detection methods are also suitable for text detection. From the perspective of the task itself:\n", "\n", "- Target detection: Given an image or video, find out the location (box) of the target, and give the target category;\n", "- Text detection: Given an input image or video, find out the area of the text, which can be a single character position or a whole text line position;\n", "\n", "\n", "\n", "