From 9faabcc37767dbade72d6e63d5fe2106629b4041 Mon Sep 17 00:00:00 2001 From: Maya Cheshire Date: Wed, 28 Jan 2026 23:39:39 -0600 Subject: [PATCH 1/2] readme updated --- README.md | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a65dc5d..73c75c9 100644 --- a/README.md +++ b/README.md @@ -1 +1,46 @@ -# IllinoisReliableAutonomyGroup.github.io-Abstract-Rendering \ No newline at end of file +# IllinoisReliableAutonomyGroup.github.io-Abstract-Rendering + +This repository hosts an interactive webpage for visualizing **abstract-rendered image bounds and uncertainty heatmaps** generated by the Abstract Rendering pipeline. + +The homepage includes: +- Title and abstract for the research paper +- Links to the paper and code +- Explanation of abstract images, model verification examples +- Interactive sliders to explore lower/upper bounds and uncertainty heatmaps:contentReference[oaicite:2]{index=2} + +--- + +## Visualizations + +For each object and domain, the visualization provides: + +- **Lower bound image** +- **Upper bound image** +- **Reference (mean) image** +- **Uncertainty heatmap** derived from pixelwise differences between bounds + +All images are **precomputed offline**, encoded as base64 PNGs, and stored in a JSON file.The frontend loads and displays these images interactively using sliders. + +--- + +## Repository Structure + +```text +Abstract-Rendering-Webpage/ +├── assets/ +│ ├── images/ # Figures and images used on the homepage +│ ├── Interact/ # Precomputed interactive visualization data +│ │ └── / +│ │ └── / +│ │ └── interactive_plot.json +│ ├── pdf/ # Paper PDF(s) +│ └── videos/ # Supplementary videos / demos +│ +├── index.html # Main project homepage (paper, overview, links) +├── render_static.html # Interactive visualization page +│ +├── style.css # Styling for the main homepage +├── style_static.css # Styling for the interactive visualization +│ +├── README.md +└── .gitignore \ No newline at end of file From 82190f2e7db09d077cbff21f45597f8a34759eb2 Mon Sep 17 00:00:00 2001 From: Maya Cheshire Date: Thu, 29 Jan 2026 00:06:45 -0600 Subject: [PATCH 2/2] readme updated again --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 73c75c9..f9e7c69 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# IllinoisReliableAutonomyGroup.github.io-Abstract-Rendering +# Abstract-Rendering-Webpage This repository hosts an interactive webpage for visualizing **abstract-rendered image bounds and uncertainty heatmaps** generated by the Abstract Rendering pipeline. @@ -6,7 +6,7 @@ The homepage includes: - Title and abstract for the research paper - Links to the paper and code - Explanation of abstract images, model verification examples -- Interactive sliders to explore lower/upper bounds and uncertainty heatmaps:contentReference[oaicite:2]{index=2} +- Interactive sliders to explore lower/upper bounds and uncertainty heatmaps --- @@ -16,10 +16,10 @@ For each object and domain, the visualization provides: - **Lower bound image** - **Upper bound image** -- **Reference (mean) image** +- **Reference image** - **Uncertainty heatmap** derived from pixelwise differences between bounds -All images are **precomputed offline**, encoded as base64 PNGs, and stored in a JSON file.The frontend loads and displays these images interactively using sliders. +All images are precomputed offline, encoded as base64 PNGs, and stored in a JSON file. The frontend loads and displays these images interactively using sliders. ---