Skip to content

Commit a46eefc

Browse files
committed
adds
1 parent bc35586 commit a46eefc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

filter/less/filter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -155,13 +155,13 @@ Implement the functions in `helpers.c` such that a user can apply grayscale, sep
155155

156156
Watch the introductory walkthrough for more information on how to get started:
157157

158-
[![](walkthrough.jpg){: width="100px" height="100px"}](https://youtu.be/K0v9byp9jd0?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
158+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/K0v9byp9jd0?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
159159

160160
### Grayscale
161161

162162
The function `grayscale` should take an image and turn it into a black-and-white version of the same image.
163163

164-
[![](walkthrough.jpg){: width="100px" height="100px"}](https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
164+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
165165

166166
1. Implement a separate `grayscale_pixel` function, which will take an image and returns a gray-scaled `RGBTRIPLE` value for that pixel:
167167

@@ -186,7 +186,7 @@ The function `grayscale` should take an image and turn it into a black-and-white
186186

187187
The function `sepia` should take an image and turn it into a sepia version of the same image.
188188

189-
[![](walkthrough.jpg){: width="100px" height="100px"}](https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
189+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
190190

191191
1. Implement a separate `sepia_pixel` function, like you did for `grayscale_pixel`.
192192

@@ -196,15 +196,15 @@ The function `sepia` should take an image and turn it into a sepia version of th
196196

197197
The `reflect` function should take an image and reflect it horizontally.
198198

199-
[![](walkthrough.jpg){: width="100px" height="100px"}](https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
199+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
200200

201201
1. For reflect, it's cleaner to **not** use an additional helper function. You can implement the full reflect inside the `reflect` function.
202202

203203
### Blur
204204

205205
Finally, the `blur` function should take an image and turn it into a box-blurred version of the same image.
206206

207-
[![](walkthrough.jpg){: width="100px" height="100px"}](https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
207+
[![](walkthrough.jpg){: width="150px"}](https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut)
208208

209209
1. Implement a separate `blur_pixel` function, like you did for `grayscale_pixel` and `sepia_pixel`.
210210

0 commit comments

Comments
 (0)