Skip to content

Commit 8d88013

Browse files
committed
Remove README, unnecessary images
1 parent c12077d commit 8d88013

File tree

8 files changed

+17
-23
lines changed

8 files changed

+17
-23
lines changed

notebooks/lab-6.zip

90.4 MB
Binary file not shown.

notebooks/lab-6/README.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

notebooks/lab-6/SOLcs41img_bright.png

-3.22 MB
Binary file not shown.
-2.99 MB
Binary file not shown.
-364 KB
Binary file not shown.

notebooks/lab-6/SOLcs41img_green.png

-1.81 MB
Binary file not shown.

notebooks/lab-6/SOLcs41img_third.png

-1.81 MB
Binary file not shown.

notebooks/lab-6/lab6-part1-numpy.ipynb

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
{
2222
"cell_type": "code",
23-
"execution_count": 9,
23+
"execution_count": 1,
2424
"metadata": {},
2525
"outputs": [
2626
{
@@ -166,7 +166,7 @@
166166
},
167167
{
168168
"cell_type": "code",
169-
"execution_count": 1,
169+
"execution_count": 2,
170170
"metadata": {},
171171
"outputs": [],
172172
"source": [
@@ -418,9 +418,22 @@
418418
},
419419
{
420420
"cell_type": "code",
421-
"execution_count": 57,
421+
"execution_count": 5,
422422
"metadata": {},
423-
"outputs": [],
423+
"outputs": [
424+
{
425+
"ename": "NameError",
426+
"evalue": "name 'reconstructed_img' is not defined",
427+
"output_type": "error",
428+
"traceback": [
429+
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
430+
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
431+
"\u001b[0;32m<ipython-input-5-70b8259b3c99>\u001b[0m in \u001b[0;36m<module>\u001b[0;34m\u001b[0m\n\u001b[1;32m 7\u001b[0m \u001b[0mimg3\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mload_image\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"SOLcs41img_unicorn3.png\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcopy\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 8\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 9\u001b[0;31m \u001b[0msave_image\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mreconstruct\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mimg1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mimg2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mimg3\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m\"cs41img_reconstructed.png\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
432+
"\u001b[0;32m<ipython-input-5-70b8259b3c99>\u001b[0m in \u001b[0;36mreconstruct\u001b[0;34m(img1, img2, img3)\u001b[0m\n\u001b[1;32m 1\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mreconstruct\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mimg1\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mimg2\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mimg3\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2\u001b[0m \u001b[0;31m# Implement your function here\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 3\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mreconstructed_img\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 4\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 5\u001b[0m \u001b[0mimg1\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mload_image\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"SOLcs41img_unicorn1.png\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mcopy\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n",
433+
"\u001b[0;31mNameError\u001b[0m: name 'reconstructed_img' is not defined"
434+
]
435+
}
436+
],
424437
"source": [
425438
"def reconstruct(img1, img2, img3):\n",
426439
" # Implement your function here\n",

0 commit comments

Comments
 (0)