OSDN Git Service

2.0.0
[psychlops/cpp.git] / psychlops / extension / standard / cv / psychlops_cv2_bridge_dummy.cpp
diff --git a/psychlops/extension/standard/cv/psychlops_cv2_bridge_dummy.cpp b/psychlops/extension/standard/cv/psychlops_cv2_bridge_dummy.cpp
new file mode 100644 (file)
index 0000000..1d86caa
--- /dev/null
@@ -0,0 +1,68 @@
+/*\r
+ *  psychlops_FFTW_bridge.cpp\r
+ *  Psychlops Standard Library (Universal)\r
+ *\r
+ *  Last Modified 2010/03/05 by Kenchi HOSOKAWA\r
+ *  (C) 2010 Kenchi HOSOKAWA, Kazushi MARUYA, Takao SATO\r
+ */\r
+\r
+\r
+#include "../../../psychlops_core.h"\r
+#include "psychlops_cv2_bridge.h"\r
+\r
+\r
+//AppState::ImageByteAlignment = 4;\r
+\r
+namespace Psychlops {\r
+\r
+void Matrix::from(const cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+void Matrix::convertFromCvMat(Matrix &gray, const cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, const cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, Matrix &a, const cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+
+void Matrix::to(cv::Mat &target) const\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}
+\r
+void Matrix::convertToCvMat(const Matrix &gray, cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+\r
+void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+\r
+void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, const Matrix &a, cv::Mat &target)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+\r
+
+void Image::to(cv::Mat &target) const\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+\r
+\r
+void Image::from(cv::Mat &source)\r
+{\r
+       std::cout << "The compiler did not support OpenCV2." << std::endl;\r
+}\r
+\r
+\r
+}      /*      <- namespace Psycholops         */\r