I have an eCommerce website in core PHP. I want to add search-by-image facility like google images or other reverse image search search engines.
I searched a lot on internet and I can't use google's search facility in my website (Neither api
nor Curl
). The main reason is that I want to search pages by Images (search result would be pages that contains images) within the website. Here is the scenario.
When a user uploads an image, the backend php will process the image and find related image that are already stored on server (Images are stored in server's directory and their filename are stored in database that is associated to a product and in turn, it will list the product that having similar product image)
I assume that first I have to process all images that are stored in server and store related pixel information in database along with filename. But I have no idea what to store in order to search later.