Image recognition from photos library

114 Views Asked by At

I need to create a neural network that will be trained using a set of pictures, for example 1000 pictures. Then I want this network to be able to take a as an input a video from camera and detect if it sees one of these pictures - but not on entire screen, but for example as a printed picture on the wall. And from it I would like to get some most probably seen pictures. I don't need to know their location in the input picture, just an information about which are they. So this network would not be a classifier - Im not interested in what this picture is of - just a name of this picture, or index in the set, or whatever. Is there some kind of neural network capable of doing something like this? It can be TensorFlow, CoreML or MLKit or whatever else.

1

There are 1 best solutions below

3
On

try start from CreateML utility.

Xcode -> Open Developer Tool -> CreateML.

Then Select "Object Detection" project.

It's used YOLO2, it's have good performance but might be not so accurate.

I recommended try it first, if this solution can't cover your's requirements then I will try help to you with YOLO5.