From a2c00806629b8133fb0f00f4cef2b9c72f26cf1c Mon Sep 17 00:00:00 2001
From: Nicole Rappe <nicole.rappe@bunny-lab.io>
Date: Wed, 26 Feb 2025 15:26:31 -0700
Subject: [PATCH] Added skeleton framework for reporting nodes.

---
 Nodes/Reporting/Export_to_CSV.py   | 3 +++
 Nodes/Reporting/Export_to_Image.py | 4 ++++
 2 files changed, 7 insertions(+)
 create mode 100644 Nodes/Reporting/Export_to_CSV.py
 create mode 100644 Nodes/Reporting/Export_to_Image.py

diff --git a/Nodes/Reporting/Export_to_CSV.py b/Nodes/Reporting/Export_to_CSV.py
new file mode 100644
index 0000000..89b1985
--- /dev/null
+++ b/Nodes/Reporting/Export_to_CSV.py
@@ -0,0 +1,3 @@
+# HIGH-LEVEL OVERVIEW
+# - This node takes an input source and either replaces or appends data fed into it into a CSV file on disk.
+# - There will be a checkbox to allow the user to change the behavior (Replace / Append)
\ No newline at end of file
diff --git a/Nodes/Reporting/Export_to_Image.py b/Nodes/Reporting/Export_to_Image.py
new file mode 100644
index 0000000..5cec7e8
--- /dev/null
+++ b/Nodes/Reporting/Export_to_Image.py
@@ -0,0 +1,4 @@
+# HIGH-LEVEL OVERVIEW
+# - This node takes an input source and dumps the data to disk in a dropdown menu of various image formats
+# - Ability to view image processing results would be an interesting bonus if displayed within the node.
+# - Could be used to show the life cycle of an image processing pipeline.
\ No newline at end of file