OSDN Git Service

2.0.0
[psychlops/cpp.git] / psychlops / extension / standard / cv / psychlops_cv2_bridge_dummy.cpp
1 /*\r
2  *  psychlops_FFTW_bridge.cpp\r
3  *  Psychlops Standard Library (Universal)\r
4  *\r
5  *  Last Modified 2010/03/05 by Kenchi HOSOKAWA\r
6  *  (C) 2010 Kenchi HOSOKAWA, Kazushi MARUYA, Takao SATO\r
7  */\r
8 \r
9 \r
10 #include "../../../psychlops_core.h"\r
11 #include "psychlops_cv2_bridge.h"\r
12 \r
13 \r
14 //AppState::ImageByteAlignment = 4;\r
15 \r
16 namespace Psychlops {\r
17 \r
18 void Matrix::from(const cv::Mat &target)\r
19 {\r
20         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
21 }\r
22 void Matrix::convertFromCvMat(Matrix &gray, const cv::Mat &target)\r
23 {\r
24         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
25 }\r
26 void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, const cv::Mat &target)\r
27 {\r
28         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
29 }\r
30 void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, Matrix &a, const cv::Mat &target)\r
31 {\r
32         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
33 }\r
34
35 void Matrix::to(cv::Mat &target) const\r
36 {\r
37         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
38 }
39 \r
40 void Matrix::convertToCvMat(const Matrix &gray, cv::Mat &target)\r
41 {\r
42         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
43 }\r
44 \r
45 void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, cv::Mat &target)\r
46 {\r
47         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
48 }\r
49 \r
50 void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, const Matrix &a, cv::Mat &target)\r
51 {\r
52         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
53 }\r
54 \r
55
56 void Image::to(cv::Mat &target) const\r
57 {\r
58         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
59 }\r
60 \r
61 \r
62 void Image::from(cv::Mat &source)\r
63 {\r
64         std::cout << "The compiler did not support OpenCV2." << std::endl;\r
65 }\r
66 \r
67 \r
68 }       /*      <- namespace Psycholops         */\r