I am using the BRIEF descriptor in OpenCV in Visual C++ 2010 to match points in two images.
In the paper about the BRIEF-descriptor is written that it is possible to speed up things:
"The BRIEF descriptor uses hamming distance, which can be done extremely fast on modern CPUs that often provide a specific instruction to perform a XOR or bit count operation, as is the case in the latest SSE instruction set."
With SSE4.2 enabled it should be speeded up. My questions is simply how I do this in Visual C++?
An alternative way could be to choose another compiler supporting SSE4. For instance Intel's ICC. Is this really necessary?