Browse Source

Added tutorial skeleton files

Clemens-A. Brust 11 years ago
parent
commit
38affffe8c

+ 1 - 0
core/tutorial/01_imageio.md

@@ -0,0 +1 @@
+# Tutorial 01 - Basic Image I/O Operations

+ 1 - 0
core/tutorial/02_grayscale.md

@@ -0,0 +1 @@
+# Tutorial 02 - Grayscale Image Operations

+ 1 - 0
core/tutorial/03_color.md

@@ -0,0 +1 @@
+# Tutorial 03 - Color Image Operations

+ 1 - 0
core/tutorial/04_filter.md

@@ -0,0 +1 @@
+# Tutorial 04 - Filters

+ 16 - 0
core/tutorial/progs/01_imageio.cpp

@@ -0,0 +1,16 @@
+/*
+ * Tutorial 01 - Basic Image I/O Operations
+ * Sample Implementation
+ *
+ * @file 01_imageio.cpp
+ * @brief Sample implementation for tutorial 01
+ * @date 09.03.2014
+ * @author Clemens-A. Brust
+ */
+
+/*
+ * Entry point
+ */
+int main(int argc, char** argv) {
+	return 0;
+}

+ 16 - 0
core/tutorial/progs/02_grayscale.cpp

@@ -0,0 +1,16 @@
+/*
+ * Tutorial 02 - Grayscale Image Operations
+ * Sample Implementation
+ *
+ * @file 02_grayscale.cpp
+ * @brief Sample implementation for tutorial 01
+ * @date 09.03.2014
+ * @author Clemens-A. Brust
+ */
+
+/*
+ * Entry point
+ */
+int main(int argc, char** argv) {
+	return 0;
+}

+ 16 - 0
core/tutorial/progs/03_color.cpp

@@ -0,0 +1,16 @@
+/*
+ * Tutorial 03 - Color Image Operations
+ * Sample Implementation
+ *
+ * @file 03_color.cpp
+ * @brief Sample implementation for tutorial 03
+ * @date 09.03.2014
+ * @author Clemens-A. Brust
+ */
+
+/*
+ * Entry point
+ */
+int main(int argc, char** argv) {
+	return 0;
+}

+ 16 - 0
core/tutorial/progs/04_filter.cpp

@@ -0,0 +1,16 @@
+/*
+ * Tutorial 04 - Filters
+ * Sample Implementation
+ *
+ * @file 04_filter.cpp
+ * @brief Sample implementation for tutorial 04
+ * @date 09.03.2014
+ * @author Clemens-A. Brust
+ */
+
+/*
+ * Entry point
+ */
+int main(int argc, char** argv) {
+	return 0;
+}