4
I would like to do a part of my application, where the user would upload an image full of drawings inside, he would then select an area of the image and I would search the entire image uppada, initial points in which this selected image repeats within the larger image. Could someone help me? Any JS library? The ones I found do face recognition and not object recognition in general...
Thanks, I’ll take a look because my project is PHP :(
– Gabrielle
@user3326192 I suggest you take a look at this link - it’s a wrapper from the Opencv library for PHP: http://www.xarg.org/project/php-facedetect/
– OnoSendai
I was able to do it using gd2 methods (lib php) and turning the images into two matrices with integer values (initially I took the image, I transformed it into Grayscale [also with gd2 methods] to make it easier) and with loops I checked... It worked! Thanks for your help
– Gabrielle
@user3326192 Glad you managed to find a solution! Feel free to if you have more questions.
– OnoSendai