**COS 426 Spring 2019: Assignment 0 Gallery** Winners (+2.0 points) =============================== . Congratulations! You're a vaporwave rockstar. Enjoy your newfound clout and intellect.](./gallery/ch28.gif border="1" width="640px") -----     **ehayes**: Here we introduce the never-before-seen Hayes SphereWarp! For each pixel in the image we determine a scale factor (distance from center divided by radius of a circle inscribed in the image). Then, we shift each pixel horizontally by an amount weighted by a linear combination of its scaling factor, the input value from the user, and an arbitrary fun number (650). -----  -----  -----      **uuberoy**: For the custom filter, I started off wanting to implement a mosaic-style filter that divided the image into smaller squares, selected the center pixel of each square, and set the color of every other pixel in the square to the color of the center square. This was fairly straightforward to implement, and the resulting solid colors of each square gave the overall image a flat look. To expand on my initial implementation, I thought it would be interesting to use alpha blending in each square to fill it in, to eliminate some of the flatness. Doing so gave my image greater depth, but the resulting circles in each square made it easy to tell how I had implemented it. In the last iteration of my design for the filter, I decided to expand the range of the pixels that I colored for each square center. Instead of restricting the coloring to each square, I now colored halway into each left and right square as well. This resulted in an interesting overlap of colors and the effect of fragmentation. -----    **wsweeny**: [TA note: This student implemented a variety of custom filters including image warping, HSL modifications, thresholding, mosaicing, and more, and combined their various filters in interesting ways to produce numerous art contest submissions. A small selection of their results are shown above.] Runner-ups (+1.5 points) =============================== ![**ahelman**: For my Custom Filter, I was inspired by the idea of 4-bit quantization discussed in lecture. I iterate over every pixel in the image, calculate its luminance from its RGB values, and then set the pixel to one of four colors (black, blue, green, or red) depending on what range the luminance falls into, ([0, .25), [.25, .5), [.5, .75), or [.75, 1], respectively).](./gallery/ahelman.png border="1" width="640px") -----  -----    **ajm7**: This custom filter produces smears on the image. Points are chosen randomly and their color is alpha blended with the rest of the column. The function value defines how low on the image the filter starts selecting points. -----   **atgao**: Going through the image pixel by pixel, I calculated an HSL color based on the ratio between a given pixel to the center and the radius. The radius was scaled by a favtor determined by the value and the saturation was also determined by the given value. I then converted the pixel into rgb and set the pixel, creating a rainbow gradient frame that could be adjusted by the user. -----   **cwkchan**: For my custom filter, I adjusted the color of the images so that each RGB value is affected by the "next" value (so that the red value takes on the value of the green value as the input value approaches 1, and similarly, the green value becomes the blue value, and the blue value becomes the red value). -----   **jcabanas**: My custom filter deconstructs each channel into its R, G, B channels. I then use each R, G, B component of the input pixel to construct each output channel. My output channels are calculated as follows (where i and j are pixel coordinates): R' = R*value*(i/image.width) + G*(1-value)*(j/image.height) + B*((i+j)/(image.width+image.height)) G' = R*(1-value)*(i/image.width) + G*(j/image.height) + B*value*((i+j)/(image.width+image.height)) B' = R*(i/image.width) + G*value*(j/image.height) + B*(1-value)*((i+j)/(image.width+image.height)) These formulas are intended to translate pixel colors depending on the input color value and spatial position. The result of this filter is a color gradient across the image. To maintain reasonable brightness across the image, each channel is normalized by a factor of (2*(((i/image.width)/2) + ((j/image.height)/2))). -----  -----    **junep**: I first draw a gradient of white to black in the background to create an extra sense of lighting, and then uniformly draw circles of a certain radius based on the value. The center of the circle determined the color of the circle. I also drew a sun using the soft brush, it seemed to make sense. -----  -----    **kyleaj**: To achieve the effect above, I first blur the image with a 5x5 box blur. I then subtract this blurred image from the original image. This has the effect of subtracting higher level details, leaving only the fine or sharp details of the image. However, the resultant image is a bit dark. To fix this, I convert the colors HSL, increase the luminance by taking the square root of the current value, and then convert the color back to RGB. This leaves the background a little messy (which in itself is a cool effect), so I decided to only take the square root when the luminance is greater than 0.03. 0.03 was determined experimentally. The result has the style of a neon sign. The included pictures are, in order, the final result, the result without thresholding, and the immediate result after subtracting the blurred image. -----  -----     **narekg**: For the Art Contest I implemented a couple of convolution filters and played with convolving different channel combinations of the images. What I sattled on is bluring saturation channel and sharpening luminosity channel of an image's pixels in HSL space. When doing this around 10 times, images look like dithered and some of them resamble optical illusions with hidden patterns in them that you see after staring at them for a couple of seconds. When doing this over and over again luminosity channel becomes binary and saturation channel convolution no longer matters but it creates interesting shades before we get to this extreme. -----   **rb25**: The custom filter selects a random pixel within 1/10 the width in the x direction and 1/10 the height in the y direction for each pixel. It alpha blends the selected pixel with the pixel of interest. The filter repeats this process 5 times for the image. -----