@@ -161,7 +161,9 @@ Watch the introductory walkthrough for more information on how to get started:
161
161
162
162
The function ` grayscale ` should take an image and turn it into a black-and-white version of the same image.
163
163
164
- [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
164
+ 1 . Watch the walkthrough:
165
+
166
+ [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
165
167
166
168
1 . Implement a separate ` grayscale_pixel ` function, which will take an image and returns a gray-scaled ` RGBTRIPLE ` value for that pixel:
167
169
@@ -186,7 +188,9 @@ The function `grayscale` should take an image and turn it into a black-and-white
186
188
187
189
The function ` sepia ` should take an image and turn it into a sepia version of the same image.
188
190
189
- [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
191
+ 1 . Watch the walkthrough:
192
+
193
+ [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/m0_vouQLufc?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
190
194
191
195
1 . Implement a separate ` sepia_pixel ` function, like you did for ` grayscale_pixel ` .
192
196
@@ -196,15 +200,19 @@ The function `sepia` should take an image and turn it into a sepia version of th
196
200
197
201
The ` reflect ` function should take an image and reflect it horizontally.
198
202
199
- [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
203
+ 1 . Watch the walkthrough:
204
+
205
+ [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
200
206
201
207
1 . For reflect, it's cleaner to ** not** use an additional helper function. You can implement the full reflect inside the ` reflect ` function.
202
208
203
209
### Blur
204
210
205
211
Finally, the ` blur ` function should take an image and turn it into a box-blurred version of the same image.
206
212
207
- [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
213
+ 1 . Watch the walkthrough:
214
+
215
+ [ ![ ] ( walkthrough.jpg ) {: width="150px"}] ( https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
208
216
209
217
1 . Implement a separate ` blur_pixel ` function, like you did for ` grayscale_pixel ` and ` sepia_pixel ` .
210
218
0 commit comments