aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/heatmap.md (renamed from docs/user_guide/gaze_analysis_pipeline/heatmap_visualisation.md)4
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/logging.md (renamed from docs/user_guide/gaze_analysis_pipeline/gaze_analysis_logging.md)0
-rw-r--r--docs/user_guide/gaze_analysis_pipeline/visualisation.md190
-rw-r--r--mkdocs.yml5
4 files changed, 195 insertions, 4 deletions
diff --git a/docs/user_guide/gaze_analysis_pipeline/heatmap_visualisation.md b/docs/user_guide/gaze_analysis_pipeline/heatmap.md
index a1f1672..35674a1 100644
--- a/docs/user_guide/gaze_analysis_pipeline/heatmap_visualisation.md
+++ b/docs/user_guide/gaze_analysis_pipeline/heatmap.md
@@ -1,5 +1,5 @@
-Visualize heatmap
-=================
+Add Heatmap
+===========
Heatmap is an optional [ArFrame](../../argaze.md/#argaze.ArFeatures.ArFrame) pipeline step. It is executed at each new gaze position to update heatmap image.
diff --git a/docs/user_guide/gaze_analysis_pipeline/gaze_analysis_logging.md b/docs/user_guide/gaze_analysis_pipeline/logging.md
index 422b43b..422b43b 100644
--- a/docs/user_guide/gaze_analysis_pipeline/gaze_analysis_logging.md
+++ b/docs/user_guide/gaze_analysis_pipeline/logging.md
diff --git a/docs/user_guide/gaze_analysis_pipeline/visualisation.md b/docs/user_guide/gaze_analysis_pipeline/visualisation.md
new file mode 100644
index 0000000..5eae7f5
--- /dev/null
+++ b/docs/user_guide/gaze_analysis_pipeline/visualisation.md
@@ -0,0 +1,190 @@
+Visualize ArFrame and ArLayers
+==============================
+
+All [ArFrame](../../argaze.md/#argaze.ArFeatures.ArFrame) and [ArLayers](../../argaze.md/#argaze.ArFeatures.ArFrame) pipeline steps can be drawn in real time or afterward.
+
+![ArFrame visualisation](../../img/ar_frame_visualisation.png)
+
+## Export to PNG file
+
+Once timestamped gaze positions have been processed by [ArFrame.look](../../argaze.md/#argaze.ArFeatures.ArFrame.look) method, it is possible to write [ArFrame](../../argaze.md/#argaze.ArFeatures.ArFrame) image into a file thanks to [OpenCV package](https://pypi.org/project/opencv-python/).
+
+```python
+import cv2
+
+# Assuming that timestamped gaze positions have been processed by ArFrame.look method
+...
+
+# Export heatmap image
+cv2.imwrite('./ar_frame.png', ar_frame.image())
+```
+
+## Export to MP4 file
+
+While timestamped gaze positions are processed by [ArFrame.look](../../argaze.md/#argaze.ArFeatures.ArFrame.look) method, it is possible to write [ArFrame](../../argaze.md/#argaze.ArFeatures.ArFrame) image into a video file thanks to [OpenCV package](https://pypi.org/project/opencv-python/).
+
+```python
+import cv2
+
+# Assuming ArFrame is loaded
+...
+
+# Create a video file to save ArFrame
+video = cv2.VideoWriter('ar_frame.avi', cv2.VideoWriter_fourcc(*'MJPG'), 10, ar_frame.size)
+
+# Assuming that timestamped gaze positions are being processed by ArFrame.look method
+...
+
+ # Write ArFrame image into video file
+ video.write(ar_frame.image())
+
+# Close video file
+video.release()
+```
+
+## Live window display
+
+While timestamped gaze positions are processed by [ArFrame.look](../../argaze.md/#argaze.ArFeatures.ArFrame.look) method, it is possible to display [ArFrame](../../argaze.md/#argaze.ArFeatures.ArFrame) image thanks to [OpenCV package](https://pypi.org/project/opencv-python/).
+
+```python
+import cv2
+
+def main():
+
+ # Assuming ArFrame is loaded
+ ...
+
+ # Create a window to display ArFrame
+ cv2.namedWindow(ar_frame.name, cv2.WINDOW_AUTOSIZE)
+
+ # Assuming that timestamped gaze positions are being processed by ArFrame.look method
+ ...
+
+ # Update ArFrame image display
+ cv2.imshow(ar_frame.name, ar_frame.image())
+
+ # Wait 10 ms
+ cv2.waitKey(10)
+
+if __name__ == '__main__':
+
+ main()
+```
+
+## Edit ArFrame image parameters
+
+[ArFrame.image](../../argaze.md/#argaze.ArFeatures.ArFrame.image) method parameters can be configured thanks to dictionary.
+
+```python
+# Edit ArFrame image parameters
+image_parameters = {
+ "draw_scan_path": {
+ "draw_fixations": {
+ "deviation_circle_color": [255, 0, 255],
+ "duration_border_color": [127, 0, 127],
+ "duration_factor": 1e-2
+ },
+ "draw_saccades": {
+ "line_color": [255, 0, 255]
+ },
+ "deepness": 0
+ },
+ "draw_layers": {
+ "MyLayer": {
+ "draw_aoi_scene": {
+ "draw_aoi": {
+ "color": [255, 255, 255],
+ "border_size": 1
+ }
+ },
+ "draw_aoi_matching": {
+ "draw_matched_fixation": {
+ "deviation_circle_color": [255, 255, 255]
+ },
+ "draw_matched_fixation_positions": {
+ "position_color": [0, 255, 255],
+ "line_color": [0, 0, 0]
+ },
+ "draw_matched_region": {
+ "color": [0, 255, 0],
+ "border_size": 4
+ },
+ "draw_looked_aoi": {
+ "color": [0, 255, 0],
+ "border_size": 2
+ },
+ "looked_aoi_name_color": [255, 255, 255],
+ "looked_aoi_name_offset": [0, -10]
+ }
+ }
+ },
+ "draw_gaze_position": {
+ "color": [0, 255, 255]
+ }
+}
+
+# Pass image parameters to ArFrame
+ar_frame_image = ar_frame.image(**image_parameters)
+
+# Do something with ArFrame image
+...
+```
+
+## Configure ArFrame image parameters
+
+[ArFrame.image](../../argaze.md/#argaze.ArFeatures.ArFrame.image) method parameters can also be configured thanks to a dedicated JSON entry.
+
+Here is the JSON ArFrame configuration file example with image parameters included:
+
+```json
+{
+ "name": "My FullHD screen",
+ "size": [1920, 1080],
+ ...
+ "image_parameters": {
+ "draw_scan_path": {
+ "draw_fixations": {
+ "deviation_circle_color": [255, 0, 255],
+ "duration_border_color": [127, 0, 127],
+ "duration_factor": 1e-2
+ },
+ "draw_saccades": {
+ "line_color": [255, 0, 255]
+ },
+ "deepness": 0
+ },
+ "draw_layers": {
+ "MyLayer": {
+ "draw_aoi_scene": {
+ "draw_aoi": {
+ "color": [255, 255, 255],
+ "border_size": 1
+ }
+ },
+ "draw_aoi_matching": {
+ "draw_matched_fixation": {
+ "deviation_circle_color": [255, 255, 255]
+ },
+ "draw_matched_fixation_positions": {
+ "position_color": [0, 255, 255],
+ "line_color": [0, 0, 0]
+ },
+ "draw_matched_region": {
+ "color": [0, 255, 0],
+ "border_size": 4
+ },
+ "draw_looked_aoi": {
+ "color": [0, 255, 0],
+ "border_size": 2
+ },
+ "looked_aoi_name_color": [255, 255, 255],
+ "looked_aoi_name_offset": [0, -10]
+ }
+ }
+ },
+ "draw_gaze_position": {
+ "color": [0, 255, 255]
+ }
+ }
+}
+``` \ No newline at end of file
diff --git a/mkdocs.yml b/mkdocs.yml
index 69fbc5c..437213c 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -9,8 +9,9 @@ nav:
- user_guide/gaze_analysis_pipeline/timestamped_gaze_positions_edition.md
- user_guide/gaze_analysis_pipeline/ar_frame_configuration_and_execution.md
- user_guide/gaze_analysis_pipeline/ar_layer_configuration_and_execution.md
- - user_guide/gaze_analysis_pipeline/gaze_analysis_logging.md
- - user_guide/gaze_analysis_pipeline/heatmap_visualisation.md
+ - user_guide/gaze_analysis_pipeline/visualisation.md
+ - user_guide/gaze_analysis_pipeline/logging.md
+ - user_guide/gaze_analysis_pipeline/heatmap.md
- Pipeline Modules:
- user_guide/gaze_analysis_pipeline/pipeline_modules/gaze_movement_identifiers.md
- user_guide/gaze_analysis_pipeline/pipeline_modules/scan_path_analyzers.md