Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/ssis/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Image 如何使用倒角匹配算法查找';类似图像';_Image_Algorithm_Computer Vision_Edge Detection - Fatal编程技术网

Image 如何使用倒角匹配算法查找';类似图像';

Image 如何使用倒角匹配算法查找';类似图像';,image,algorithm,computer-vision,edge-detection,Image,Algorithm,Computer Vision,Edge Detection,我想了解更多有关如何使用倒角匹配算法(一种边缘匹配算法)来查找“相似”图像的信息。我想知道是否有可能对匹配结果进行“评分”。切角匹配算法基本上计算两幅图像之间的距离(不相似性)。其基本思想是: 提取查询图像和目标图像的边缘/轮廓 在查询图像中取一个轮廓点/像素,在目标图像中找到最近的轮廓点/像素的距离 求查询图像的所有边缘点/像素的距离之和 这给出了倒角距离,即两个图像之间的不相似值。值越低,结果越好。但是,如果目标图像比查询图像大(通常情况下),则必须注意缩放和滑动窗口 您可以在opencv\

我想了解更多有关如何使用倒角匹配算法(一种边缘匹配算法)来查找“相似”图像的信息。我想知道是否有可能对匹配结果进行“评分”。

切角匹配算法基本上计算两幅图像之间的距离(不相似性)。其基本思想是:

  • 提取查询图像和目标图像的边缘/轮廓
  • 在查询图像中取一个轮廓点/像素,在目标图像中找到最近的轮廓点/像素的距离
  • 求查询图像的所有边缘点/像素的距离之和
  • 这给出了倒角距离,即两个图像之间的不相似值。值越低,结果越好。但是,如果目标图像比查询图像大(通常情况下),则必须注意缩放和滑动窗口


    您可以在opencv\modules\contrib上找到工作示例。

    请详细说明您提到的滑动窗口好吗?