示例#1
0
 public void histeqgrayTest()
 {
     UInt16[,,] test = ImageLib.imread(@"C:\VSTest\test.jpg");
     UInt16[,] test2 = ImageLib.rgb2gray(test);
     UInt16[] test3 = ImageLib.imhistgray(test2);
     UInt16[] test4 = ImageLib.histeqgray(test2);
 }
示例#2
0
 public void rgb2grayTest()
 {
     UInt16[,,] test = ImageLib.imread(@"C:\VSTest\test.jpg");
     UInt16[,] test2 = ImageLib.rgb2gray(test);
 }