143144145146147148149150151
* 特征检测,使用harris corner detector * * @return */ public List<Corner> detectInterestPoints() { HarrisFast hf = new HarrisFast(input, width, height, mIntegralImage); hf.filter(sigma, k, spacing); return hf.corners; }