Box Blur

Description


Last night you partied a little too hard. Now there’s a black and white photo of you that’s about to go viral! You can’t let this ruin your reputation, so you want to apply the box blur algorithm to the photo to hide its content.

The pixels in the input image are represented as integers. The algorithm distorts the input image in the following way: Every pixel x in the output image has a value equal to the average value of the pixel values from the 3 × 3 square that has its center at x, including x itself. All the pixels on the border of x are then removed.

Return the blurred image as an integer, with the fractions rounded down.

Example

For image = [[1, 1, 1], [1, 7, 1], [1, 1, 1]] the output should be boxBlur(image) = [[1]].

To get the value of the middle pixel in the input 3 × 3 square: (1 + 1 + 1 + 1 + 7 + 1 + 1 + 1 + 1) = 15 / 9 = 1.66666 = 1. The border pixels are cropped from the final result.

For image = [[7, 4, 0, 1], [5, 6, 2, 2], [6, 10, 7, 8], [1, 4, 2, 0]] the output should be

boxBlur(image) = [[5, 4], [4, 4]] There are four 3 × 3 squares in the input image, so there should be four integers in the blurred output. To get the first value: (7 + 4 + 0 + 5 + 6 + 2 + 6 + 10 + 7) = 47 / 9 = 5.2222 = 5. The other three integers are obtained the same way, then the surrounding integers are cropped from the final result.

Input/Output

  • [execution time limit] 4 seconds (js)

  • [input] array.array.integer image

An image, stored as a rectangular matrix of non-negative integers.

Guaranteed constraints: 3 ≤ image.length ≤ 10, 3 ≤ image[0].length ≤ 10, 0 ≤ image[i][j] ≤ 255.

  • [output] array.array.integer

A blurred image represented as integers, obtained through the process in the description.

[JavaScript (ES6)] Syntax Tips

1
2
3
4
5
6
// Prints help message to the console
// Returns a string
function helloWorld(name) {
    console.log("This prints to the console when you Run Tests");
    return "Hello, " + name;
}

Solution


1
2
3
4
5
6
7
8
9
10
11
12
13
14
function boxBlur(im) {
    
    var im2 = im.slice().map(l=>l.slice());
    for (var i = 1; i < im.length - 1; i++) {
        for (var j = 1; j < im[0].length - 1; j++) {
            var sum = im.slice(i-1,i+2).reduce((acc,l)=>acc + l.slice(j-1,j+2).reduce((a,b)=>a+b),0);
            im2[i][j] = Math.floor(sum/9);
        }
    }
    im2.pop();
    im2.shift();
    im2.forEach(l=>{l.pop(); l.shift()})
    return im2;
}