Skip to content

Collection of test classes (Testklassensammlung)

OTI2020 edited this page Oct 15, 2020 · 3 revisions

testing of floodfill-similar algorithem

/**
 * @author: OTI2020 && heilandoo 
 * @title: 2d-array for testing
 * @aim: testing of floodfill-similar algorithem to detect connected areas of same color
 * @date: 11.03.2020; 11:20 am 
**/

private static int px = 9; 
private static int py = 8; 
private static int anzPixel = 0; 
private static float[][] ausgangsArr = { {0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,0 ,255}, {0 ,255,255,255,255,255,255,255,0 ,0 }, {0 ,255,255,255,255,255,255,255,255,0 }, {0 ,0 ,255,255,0 ,0 ,0 ,255,255,0 }, {0 ,255,255,255,0 ,255,0 ,255,255,0 }, {0 ,0 ,255,255,0 ,0 ,0 ,255,0 ,0 }, {0 ,0 ,255,255,255,255,255,0 ,0 ,0 }, {0 ,255,255,255,255,255,0 ,0 ,0 ,0 }, {0 ,0 ,0 ,255,255,255,0 ,0 ,255,255}, {255,0 ,0 ,0 ,0 ,0 ,0 ,255,255,255}};

ROPs test class

/**
 * @author
 * @title: testing  ROPs
 * @date: 
**/
Clone this wiki locally