Beispiel #1
0
        public void FindImageTest()
        {
            SiftFeat target   = new SiftFeat();
            int      row      = 0;
            int      col      = 0;
            bool     expected = true;
            bool     actual;

            actual = target.FindImage(row, col);
            Assert.AreEqual(expected, actual);
        }
Beispiel #2
0
        public void SiftFeaturesTest()
        {
            SiftFeat target = new SiftFeat();

            target.SiftFeatures();
        }