Harris 角检测器和 Harris 兴趣点检测器是否相同?

Does Harris corner detector and Harris interest points detector the same things?

我是计算机视觉方面的新手,但想学习这个领域。
现在我阅读文章 "On Space-Time Interest Points"。在第 2.1 章中,作者解释了如何使用 Harris 兴趣点检测器在空间域中找到兴趣点。我试图找到有关此方法的更深入的解释,但只能找到 Harris Corner Detector。

它们是一样的东西吗?

是的,它们是同一回事。 Harris 是一个兴趣点检测器,它恰好检测角点。还有其他的corner detector,比如"Good Feature to Track",FAST,Forstner等。还有interest point detector,检测corners以外的结构。例如,SIFT 特征使用的高斯差分 (DoG) 检测器检测类似 blob 的结构。