Gravy
Gravy

Reputation: 12445

Pseudo code for Moravec Corner Detector

I am looking for some pseudo code for the Moravec corner detector.

I wish to have the pseudo code just as a means of understanding how the algorithm works.

Syntax of code is not important, however comments explaining what each component is doing would be useful. I am looking to gain a clear exposition of the algorithm.

Assume image im[y,x] indexed by y(row) and x(column).

Thanks in advance.

Upvotes: 1

Views: 1756

Answers (1)

Zorayr
Zorayr

Reputation: 24942

You should take a look at Moravec.java implemented for JFeatureLib.

Upvotes: 1

Related Questions