"Complex conjugate" ComplexImage 对象,用于互相关

"Complex conjugate" of a ComplexImage object, for cross-correlation

我正在尝试使用 AForge 框架在两个图像之间进行互相关。为此,我需要获得 ComplexImage 对象的复共轭。

我在AForge框架中没有找到可以做到这一点的工具,使用System.Numerics.Complex.Conjugate()returns报错(当然,我不能把图片转成复数) .

我该怎么做?使用循环和逐像素工作是唯一的方法吗?这看起来真的很乏味和耗时。或者有什么方法可以不使用复数共轭来实现互相关吗?

正如@Paul R 所说,"For a purely real image in the spatial domain the complex conjugate is the same as the original"。