Skip to content

Commit 373c888

Browse files
authored
Update image paths and captions in index.html
1 parent 6bbe29e commit 373c888

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

project-5/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -689,11 +689,11 @@ <h4>Campanile Inpainting</h4>
689689
<figcaption>Original Campanile</figcaption>
690690
</figure>
691691
<figure>
692-
<img src="images/campanile_mask.png" alt="campanile_mask.png" />
692+
<img src="images/inpaint/campanile_mask.png" alt="campanile_mask.png" />
693693
<figcaption>Mask</figcaption>
694694
</figure>
695695
<figure>
696-
<img src="images/campanile_inpaint.png" alt="campanile_inpaint.png" />
696+
<img src="images/inpaint/campanile_inpaint.png" alt="campanile_inpaint.png" />
697697
<figcaption>Inpainted Campanile</figcaption>
698698
</figure>
699699
</div>
@@ -880,21 +880,21 @@ <h3>Prompts: <code>'an oil painting of a snowy mountain village'</code> & <code>
880880
<section id="part-1-9">
881881
<h2>Part 1.9 – Hybrid Images</h2>
882882

883-
With the techniques above, we can now also create hybrid images, or images that look like different subjects depending on the viewing distance. The classical way to create a hybrid image is to transform the image you want to see at a far range with a low-pass filter, the image you want to see at close range with a high-pass filter, and combine the 2 transformed images. We can use a similar algorithm in the denoising process, namely by passing the noise estimate from <code>p<sub>1</sub></code> and <code>p<sub>2</sub></code> through a low and high pass filter, respectively. This will produce an image that, when viewed close up, shows <code>p<sub>1</sub></code>, but when viewed far away, shows <code>p<sub>2</sub></code>. Unlike the anagram images, we don't need to flip or transform the image to be denoised, as both images should be viewed under the same orientation. Below are several examples:
883+
With the techniques above, we can now also create hybrid images, or images that look like different subjects depending on the viewing distance. The classical way to create a hybrid image is to transform the image you want to see at a far range with a low-pass filter, the image you want to see at close range with a high-pass filter, and combine the 2 transformed images. We can use a similar algorithm in the denoising process, namely by passing the noise estimate from <code>p<sub>1</sub></code> and <code>p<sub>2</sub></code> through a low and high pass filter, respectively. After doing so, we will add the 2 filtered noises together to get the final noise estimate at each step. This will produce an image that, when viewed close up, shows <code>p<sub>1</sub></code>, but when viewed far away, shows <code>p<sub>2</sub></code>. Unlike the anagram images, we don't need to flip or transform the image to be denoised, as both images should be viewed under the same orientation. Below are several examples:
884884

885885
<div class="subsection">
886886
<div class="image-row">
887887
<figure>
888888
<img src="images/hybrid/hybrid1_256.png" alt="hybrid1_256.png" />
889-
<figcaption>Prompts: <code></code> (low-pass) & <code></code> (high-pass)</figcaption>
889+
<figcaption>Prompts: <code>'a lithograph of a skull'</code> (low-pass) & <code>'a lithograph of waterfalls'</code> (high-pass)</figcaption>
890890
</figure>
891891
<figure>
892892
<img src="images/hybrid/hybrid2_256.png" alt="hybrid2_256.png" />
893893
<figcaption>Prompts: <code></code> (low-pass) & <code></code> (high-pass)</figcaption>
894894
</figure>
895895
<figure>
896896
<img src="images/hybrid/hybrid3_256.png" alt="hybrid3_256.png" />
897-
<figcaption>Prompts: <code></code> (low-pass) & <code></code> (high-pass)</figcaption>
897+
<figcaption>Prompts: <code>'a lithograph of waterfalls'</code> (low-pass) & <code>'a photo of a dog'</code> (high-pass)</figcaption>
898898
</figure>
899899
</div>
900900
</div>

0 commit comments

Comments
 (0)