I need my answer from someone that has put code into robots and did at least one of the following tasks: (which I need the code that does this)
As each image is recorded and saved, I didn't have access to their names in the code beforehand, so how are they(each image frame) or all millions of 0s&1s going to be sent to a IF-Function and check if matches the special-image!? Plus I need a Function to get some of the image's 0s&1s and send em to motors.
No idk even know where to go in that link, if I can find someone that's already done it then you can tell me the few lines I need. If someone can't tell me these lines for free I'll simply hire (my next plan). C++ had manuals but sorry giving me a link to this opencv repeatingly is wearing thin.
I would suggest that you give yourself a week or so to get into it. Only if you feel that you're unable to do it look for someone else. I didn't do myself, but i would think that there are other who did it and willing to help (with free support).
so how are they(each image frame) or all millions of 0s&1s going to be sent to a IF-Function and check if matches the special-image!?
You cannot compare two pictures directly since there are in most cases slight differences of color and/or size which makes it impossible. Usually you will determine boundaries of the object and use what comes close to your original.
Plus I need a Function to get some of the image's 0s&1s and send em to motors.
You do not send images to motors. You need to find out the characteristics (like turning circle, speed, etc.) of the vehicle and let it search the room line by line or in circles/spiral.