Official GitHub Pages website for the Visual Computing Lab (VCLab) at The Hong Kong Polytechnic University, directed by Chair Professor Lei Zhang.
"Y learning and beyond — for future visual enhancement and understanding."
Live site (once deployed): https://<your-org>.github.io/vclab/
VCLab/
├── index.html # Main landing page
├── collections/ # Research collection pages
│ ├── restoration.html
│ ├── multimodal.html
│ ├── synthesis.html
│ ├── 3d.html
│ ├── architecture.html
│ └── benchmarks.html
├── assets/
│ ├── css/
│ │ ├── style.css # global layout & theme
│ │ └── collection.css # collection-page styles
│ ├── js/
│ │ ├── pubs.js # shared data (publications, team, collections)
│ │ ├── main.js # homepage logic
│ │ └── collection.js # collection-page logic
│ ├── icons/ # SVG icons + logo + favicon
│ └── images/ # (place team photos etc. here)
└── README.md
- Brand color: PolyU brick red
#8F1329, with gold#D4A24Caccents. - Typography: Playfair Display (serif headings) + Inter (sans body).
- Layout: fixed left sidebar navigation + scrollable main content, inspired by Tsinghua MARS Lab's site.
- Research collections, each with a custom SVG icon.
All dynamic content lives in assets/js/pubs.js:
window.PUBLICATIONS— publication list (assign each acategorythat matches a collection key).window.TEAM— team roster.window.COLLECTIONS— per-collection lead text, tags and topic cards.
To add a new paper, append an object like:
{ venue:"CVPR", year:"2026", tag:"Oral",
title:"...", authors:"...", tagline:"...",
category:"restoration",
paper:"https://arxiv.org/abs/...",
code:"https://github.com/..." }No build step required — it's a static site.
# from the VCLab folder
python -m http.server 8080
# then open http://localhost:8080- Create a new repo (e.g.
vclab) under your GitHub organization. - Push the content of this folder to the
mainbranch. - Settings → Pages → Source: Deploy from a branch →
main/ root. - Visit
https://<org>.github.io/vclab/.
- Site design & implementation: VCLab (2026).
- Inspired by the layout of Tsinghua MARS Lab.
- Brand palette follows PolyU brand guidelines.