In [7]:
import matplotlib.pyplot as plt
from IPython.display import Image, display, Markdown


#show examples of data
segment = 'semanticsegmentation.png'
silhouette = 'silhouette.jpg'
optical_flow = 'opticalflow.png'

img_dict = {'Semantic Segmentation': segment,'Sihouette': silhouette,'Optical Flow': optical_flow}
for label, img in img_dict.items():
    display(Markdown(f"### {label}"))
    display(Image(str(img)))

#table of patient measurements
patient_anthropometrics = []

Semantic Segmentation¶

No description has been provided for this image

Sihouette¶

No description has been provided for this image

Optical Flow¶

No description has been provided for this image