Browse Source

Update to the unit-tests.

pull/168/head
Canming Huang 7 years ago
parent
commit
495e7824da
  1. 2
      Emgu.CV.Test/AutoTestImage.cs
  2. 10
      Emgu.CV.Test/AutoTestVarious.cs

2
Emgu.CV.Test/AutoTestImage.cs

@ -937,7 +937,7 @@ namespace Emgu.CV.Test
image.SetRandUniform(new MCvScalar(), new MCvScalar(255));
image.ThresholdToZero(new Gray(120));
Emgu.CV.Moments moment = image.GetMoments(true);
double[] huMoment = moment.HuMoment;
double[] huMoment = moment.HuMoments;
}
/*

10
Emgu.CV.Test/AutoTestVarious.cs

@ -141,6 +141,16 @@ namespace Emgu.CV.Test
}
}
[Test]
public void TestObjectnessBING()
{
using (Emgu.CV.Saliency.ObjectnessBING objectnessBING = new Saliency.ObjectnessBING())
{
//objectnessBING.SetTrainingPath("C:\\tmp");
}
}
[Test]
public void TestDenseHistogram4()
{

Loading…
Cancel
Save