-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing new Pupil Cloud section covering enrichments and visualiz…
…ations
- Loading branch information
Marc Tonsen
committed
Sep 20, 2023
1 parent
a99eeb0
commit cc50518
Showing
8 changed files
with
149 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
description: Create rich visualizations of gaze data by overlaying it onto scene video. | ||
permalink: /visualizations/heatmap | ||
--- | ||
## Heatmap | ||
<div class="pb-4" style="display:flex;justify-content:center;"> | ||
<v-img | ||
:src="require('../../media/enrichments/gaze_overlay_header.png')" | ||
max-width=100% | ||
> | ||
</v-img> | ||
</div> | ||
TBD | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--- | ||
description: Explanation of all available enrichments including setup instructions. | ||
permalink: /pupil-cloud/visualizations | ||
--- | ||
|
||
# Visualizations | ||
TBD | ||
|
||
<div> | ||
<div class="grid grid-cols-1 sm-grid-cols-2 md-grid-cols-3 lg-grid-cols-2 xl-grid-cols-3 gap-8"> | ||
<div v-for="(item, index) in visualizations"> | ||
<router-link | ||
:key="index" | ||
:to="item.to" | ||
> | ||
<v-img | ||
class="rounded" | ||
aspect-ratio="1.4" | ||
style="margin-bottom:32px;" | ||
:position="item.position" | ||
:src="require(`../../media/enrichments/${item.img}`)" | ||
/> | ||
<p class="caption--1 font-weight-bold pb-3">{{ item.title }}</p> | ||
</router-link> | ||
<p class="caption--1"> | ||
{{ item.text }} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<script> | ||
export default { | ||
data() { | ||
return { | ||
panel: null, | ||
visualizations: [ | ||
{ | ||
title: "Video Renderer", | ||
to: "/pupil-cloud/visualizations/video-renderer", | ||
text: "TBD", | ||
img: "reference_image_mapper_header.png", | ||
}, | ||
{ | ||
title: "Heatmap", | ||
to: "/pupil-cloud/visualizations/Heatmap", | ||
text: "TBD", | ||
img: "reference_image_mapper_header.png", | ||
}, | ||
], | ||
}; | ||
}, | ||
} | ||
</script> | ||
|
||
|
||
|
||
|
||
|
||
|
6 changes: 3 additions & 3 deletions
6
src/enrichments/gaze-overlay.md → ...il-cloud/visualizations/video-renderer.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters