この問題を探しましたが、解決方法がわかりません (そして見つかりませんでした)。ここで問題を解決する方法を知っている人はいますか?私は EMGU を使用していますが、問題は c# コーディングにあります (私はかなり C# に慣れていません)。out ステートメントをあまり使用していないため、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);