#define NEW_ALGO using System; public class Test { private static void printArray(byte[] arr, int w, int h) { for (int i = 0; i < h; ++i) { for (int j = 0; j < w; ++j) Console.Write("{0} ", arr[i*w + j]); Console.WriteLine(""); } } public static void Main() { int origWidth = 5; int origHeight = 10; byte[] srcData = new byte[origWidth * origHeight]; for (int ii = 0; ii < origWidth*origHeight; ++ii) srcData[ii] = (byte)ii; Console.WriteLine("Original"); printArray(srcData, origWidth, origHeight); // find max scale value int scale = 3; // NOTE: temporary // create new byte array to store new image int width = origWidth * scale; int height = origHeight * scale; int stride = width; byte[] trgData = new byte[height * stride]; // update the progress bar // progressBar1.Value = 10; #if NEW_ALGO int targetIdx = 0; for (int i = 0; i < height; ++i) { int iUnscaled = i / scale; for (int j = 0; j < width; ++j) { int jUnscaled = j / scale; trgData[targetIdx++] = srcData[iUnscaled * origWidth + jUnscaled]; } } #else // OLD ALGORITHM int i = -1; // index for src data // copy pixel data // for (int i = 0; i < ) for (int n = 0; n < trgData.Length; n++) { if (n % stride == 0) { i++; } trgData[n] = srcData[i]; } #endif Console.WriteLine("\nScaled"); printArray(trgData, width, height); // your code goes here } }
Standard input is empty
Original 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 Scaled 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 5 5 5 6 6 6 7 7 7 8 8 8 9 9 9 5 5 5 6 6 6 7 7 7 8 8 8 9 9 9 5 5 5 6 6 6 7 7 7 8 8 8 9 9 9 10 10 10 11 11 11 12 12 12 13 13 13 14 14 14 10 10 10 11 11 11 12 12 12 13 13 13 14 14 14 10 10 10 11 11 11 12 12 12 13 13 13 14 14 14 15 15 15 16 16 16 17 17 17 18 18 18 19 19 19 15 15 15 16 16 16 17 17 17 18 18 18 19 19 19 15 15 15 16 16 16 17 17 17 18 18 18 19 19 19 20 20 20 21 21 21 22 22 22 23 23 23 24 24 24 20 20 20 21 21 21 22 22 22 23 23 23 24 24 24 20 20 20 21 21 21 22 22 22 23 23 23 24 24 24 25 25 25 26 26 26 27 27 27 28 28 28 29 29 29 25 25 25 26 26 26 27 27 27 28 28 28 29 29 29 25 25 25 26 26 26 27 27 27 28 28 28 29 29 29 30 30 30 31 31 31 32 32 32 33 33 33 34 34 34 30 30 30 31 31 31 32 32 32 33 33 33 34 34 34 30 30 30 31 31 31 32 32 32 33 33 33 34 34 34 35 35 35 36 36 36 37 37 37 38 38 38 39 39 39 35 35 35 36 36 36 37 37 37 38 38 38 39 39 39 35 35 35 36 36 36 37 37 37 38 38 38 39 39 39 40 40 40 41 41 41 42 42 42 43 43 43 44 44 44 40 40 40 41 41 41 42 42 42 43 43 43 44 44 44 40 40 40 41 41 41 42 42 42 43 43 43 44 44 44 45 45 45 46 46 46 47 47 47 48 48 48 49 49 49 45 45 45 46 46 46 47 47 47 48 48 48 49 49 49 45 45 45 46 46 46 47 47 47 48 48 48 49 49 49