Ejemplo n.º 1
0
        public void TestGenerateHsv()
        {
            // HSV Image
            var img = ImageFactory.GenerateHsv(BunnyPath);

            Assert.IsFalse(ImageEmpty(img));
        }
Ejemplo n.º 2
0
 public void TestHsvTransforms()
 {
     this.Transforms(ImageFactory.GenerateHsv(BunnyPath));
 }
Ejemplo n.º 3
0
 public void TestEquivalenceHsv()
 {
     Equivalence(ImageFactory.GenerateHsv(BunnyPath));
 }
Ejemplo n.º 4
0
        public void TestCopyHsv()
        {
            var img = ImageFactory.GenerateHsv(BunnyPath);

            TestCopyGeneric(img);
        }
Ejemplo n.º 5
0
 public void TestClearHsv()
 {
     ImageFactory.GenerateHsv(50, 50).Clear();
 }
Ejemplo n.º 6
0
 public void TestIsSynchronizedHsv()
 {
     Assert.IsFalse(ImageFactory.GenerateHsv(50, 50).IsSynchronized);
 }
Ejemplo n.º 7
0
 public void TestModifyHsv()
 {
     TestModify(ImageFactory.GenerateHsv(BunnyPath));
 }
Ejemplo n.º 8
0
 public void TestAddHsv()
 {
     ImageFactory.GenerateHsv(50, 50).Add(default(HSV));
 }
Ejemplo n.º 9
0
 public void TestIsReadOnlyHsv()
 {
     Assert.IsTrue(ImageFactory.GenerateHsv(50, 50).IsReadOnly);
 }
Ejemplo n.º 10
0
 public void TestRemoveHsv()
 {
     ImageFactory.GenerateHsv(50, 50).Remove(default(HSV));
 }
Ejemplo n.º 11
0
        public void HsvDataConsistency()
        {
            IImage <HSV> img = ImageFactory.GenerateHsv(BunnyPath);

            TestDataConsistency(img);
        }
Ejemplo n.º 12
0
        public void HsvIDisposable()
        {
            IImage <HSV> img = ImageFactory.GenerateHsv(BunnyPath);

            TestIDisposable(img);
        }
Ejemplo n.º 13
0
        public void HsvDataIEnumerable()
        {
            IImage <HSV> img = ImageFactory.GenerateHsv(BunnyPath);

            TestIEnumerable(img);
        }
Ejemplo n.º 14
0
        public void HsvDataICollection()
        {
            IImage <HSV> img = ImageFactory.GenerateHsv(BunnyPath);

            TestICollection(img);
        }