Skip to content

Commit 5082941

Browse files
authored
Update proj2.html
1 parent 690714a commit 5082941

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

project-2/proj2.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,12 @@ <h3>Part 2.2: Hybrid Images</h3>
249249
<article id="part2-3">
250250
<h3>Part 2.3 &amp; 2.4: Multiresolution Blending</h3>
251251
<p>
252-
To blend 2 images, we can first start by creating a Gaussian/Laplacian stack, where at
252+
To blend 2 images, we can first start by creating a Gaussian/Laplacian stack. This is similar to a Gaussian stack, except that at each level, we don't need to downsample. The easiest way to achieve this is to have a function that takes in an array of images, and for each level, append one image to a list and recurse on the last (latest added) element of the list. In the end, a 3D (4D if using RGB images) array will be returned that is a collection of all the images in the stack:
253253
</p>
254+
<div align="center">
255+
<img src="images/appleorangestack.png" alt="appleorangestack.png" width="50%">
256+
<figcaption style="margin-bottom:6px;">(T-B): Gaussian stack for apple, Laplacian stack for apple, Gaussian stack for orange, Laplacian stack for orange.</figcaption>
257+
</div>
254258
</article>
255259
</section>
256260
</main>

0 commit comments

Comments
 (0)