我一直在寻找这个问题,但我不知道(也没有找到)如何解决它。这里有谁知道如何解决这个问题?我正在使用 EMGU,但问题在于 c# 编码(我对 C# 相当陌生) - 我认为这与 out 语句有关,因为我没有太多使用它们:
Image<Gray, Byte> first_image;
if (start_at_frame_1 == true)
{
Perform_custom_routine(imput_frame, out first_image);
}
else
{
Perform_custom_routine(imput_frame, out second_image);
}
Comparison(first_image);