@@ -155,13 +155,13 @@ Implement the functions in `helpers.c` such that a user can apply grayscale, sep
155
155
156
156
Watch the introductory walkthrough for more information on how to get started:
157
157
158
- [ ![ ] ( walkthrough.jpg ) {: width="100px" height="100px "}] ( https://youtu.be/K0v9byp9jd0?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
158
+ [ ![ ] ( walkthrough.jpg ) {: width="150px "}] ( https://youtu.be/K0v9byp9jd0?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
159
159
160
160
### Grayscale
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="100px" height="100px "}] ( https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
164
+ [ ![ ] ( walkthrough.jpg ) {: width="150px "}] ( https://youtu.be/A8LA2osnAwM?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
165
165
166
166
1 . Implement a separate ` grayscale_pixel ` function, which will take an image and returns a gray-scaled ` RGBTRIPLE ` value for that pixel:
167
167
@@ -186,7 +186,7 @@ The function `grayscale` should take an image and turn it into a black-and-white
186
186
187
187
The function ` sepia ` should take an image and turn it into a sepia version of the same image.
188
188
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 )
190
190
191
191
1 . Implement a separate ` sepia_pixel ` function, like you did for ` grayscale_pixel ` .
192
192
@@ -196,15 +196,15 @@ The function `sepia` should take an image and turn it into a sepia version of th
196
196
197
197
The ` reflect ` function should take an image and reflect it horizontally.
198
198
199
- [ ![ ] ( walkthrough.jpg ) {: width="100px" height="100px "}] ( https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
199
+ [ ![ ] ( walkthrough.jpg ) {: width="150px "}] ( https://youtu.be/dlWpx8gQdFo?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
200
200
201
201
1 . For reflect, it's cleaner to ** not** use an additional helper function. You can implement the full reflect inside the ` reflect ` function.
202
202
203
203
### Blur
204
204
205
205
Finally, the ` blur ` function should take an image and turn it into a box-blurred version of the same image.
206
206
207
- [ ![ ] ( walkthrough.jpg ) {: width="100px" height="100px "}] ( https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
207
+ [ ![ ] ( walkthrough.jpg ) {: width="150px "}] ( https://youtu.be/6opWB7DaFCY?list=PLhQjrBD2T3837jmUt0ep7Tpmnxdv9NVut )
208
208
209
209
1 . Implement a separate ` blur_pixel ` function, like you did for ` grayscale_pixel ` and ` sepia_pixel ` .
210
210
0 commit comments