1 | initial version |
Didn't go through the entire code, but you have to work on subimages with the Harris detector. That means that Ixx(x,y), Ixy(x,y) and Iyy(x,y) are the neighborhoods of pixel(x,y), not the entire image.
The structure tensor needs to be computed locally, not on the entire image.
So the algorithm becomes:
2 | No.2 Revision |
Didn't go through the entire code, but you have to work on subimages with the Harris detector. That means that Ixx(x,y), Ixy(x,y) and Iyy(x,y) are the neighborhoods of pixel(x,y), not the entire image.image. (This window has size of blockSize
in the OpenCV implementation)
The structure tensor needs to be computed locally, not on the entire image.
So the algorithm becomes: