I have a web server which receives an image from a client and do some SIFT based image matching at the server (win32) end send the result back to the client.
Receiving image is done using apache and php. SIFT based processing functions are in C++. Now I want to parse the data in php variable $image (the variable which holds the received image) to the main function of C++ program as an argument.
Then I want to take the result back to php code. Result is the matching number of points (integer value)
How can I do this? Thank you