Artificial Intelligence Data Labeling (2): Image Recognition
In the previous issue, we briefly introduced artificial intelligence data labeling (2) text labeling. In this issue, we will introduce image labeling for image recognition . What is Image Annotation? (easy to understand guide)
Image data annotation/ acquisition
First of all, let's quote a simple explanation of machine learning from a post on Zhihu:
Recognize the handwritten number "8"
Image recognition is realized when we have a certain amount of data, so first of all we have to have a large number of handwritten "8", just as MINIST provides a picture library of handwritten numbers, and each picture is 18*18 picture:
The digit "8" in the MNIST database
Neural networks can't recognize images, but neural networks will take numbers as input, but for computers, pictures happen to be a series of numbers representing the color of each pixel:
Handwritten numeral "8"
We treat a 18×18 pixel picture as a series of ...