File size: 1,381 Bytes
99cccc7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196a5b2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import streamlit as st
from streamlit_image_comparison import image_comparison

# set page config
st.set_page_config(page_title="James Webb Space Telescope vs Hubble Telescope Images", layout="centered")

st.title("James Webb vs Hubble Telescope Pictures")

st.markdown("# Southern Nebula")

# render image-comparison
image_comparison(
    img1="https://www.webbcompare.com/img/hubble/southern_nebula_700.jpg",
    img2="https://www.webbcompare.com/img/webb/southern_nebula_700.jpg",
    label1="Hubble",
    label2="Webb"
)


st.markdown("# Galaxy Cluster SMACS 0723")

# render image-comparison
image_comparison(
    img1="https://www.webbcompare.com/img/hubble/deep_field_700.jpg",
    img2="https://www.webbcompare.com/img/webb/deep_field_700.jpg",
    label1="Hubble",
    label2="Webb"
)


st.markdown("# Carina Nebula")

# render image-comparison
image_comparison(
    img1="https://www.webbcompare.com/img/hubble/carina_700.png",
    img2="https://www.webbcompare.com/img/webb/carina_700.jpg",
    label1="Hubble",
    label2="Webb"
)

st.markdown("# Stephan's Quintet")

# render image-comparison
image_comparison(
    img1="https://www.webbcompare.com/img/hubble/stephans_quintet_700.jpg",
    img2="https://www.webbcompare.com/img/webb/stephans_quintet_700.jpg",
    label1="Hubble",
    label2="Webb"
)



st.caption("Inspiration Credit - https://www.webbcompare.com/")