Browse Source

Fixed issue #905: Wrongly converted parameter arguments for process method in AlignExposures class

pull/910/head
Canming Huang 2 years ago
parent
commit
9922769368
  1. 2
      Emgu.CV/Photo/AlignExposures.cs

2
Emgu.CV/Photo/AlignExposures.cs

@ -33,7 +33,7 @@ namespace Emgu.CV
{
using (InputArray iaSrc = src.GetInputArray())
using (InputArray iaTimes = times.GetInputArray())
using (InputArray iaResponse = times.GetInputArray())
using (InputArray iaResponse = response.GetInputArray())
{
CvInvoke.cveAlignExposuresProcess(_alignExposuresPtr, iaSrc, dst, iaTimes, iaResponse);
}

Loading…
Cancel
Save