X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=psychlops%2Fextension%2Fstandard%2Fcv%2Fpsychlops_cv2_bridge_dummy.cpp;fp=psychlops%2Fextension%2Fstandard%2Fcv%2Fpsychlops_cv2_bridge_dummy.cpp;h=1d86caaed7e2817da118eb83f31b329085fc5e71;hb=3eaa8d4d651064b4dc33cc86faa55b30b317d1b4;hp=0000000000000000000000000000000000000000;hpb=566d9e84a8ff3ac9094e94ccf6b21f696900d568;p=psychlops%2Fcpp.git 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 index 0000000..1d86caa --- /dev/null +++ b/psychlops/extension/standard/cv/psychlops_cv2_bridge_dummy.cpp @@ -0,0 +1,68 @@ +/* + * psychlops_FFTW_bridge.cpp + * Psychlops Standard Library (Universal) + * + * Last Modified 2010/03/05 by Kenchi HOSOKAWA + * (C) 2010 Kenchi HOSOKAWA, Kazushi MARUYA, Takao SATO + */ + + +#include "../../../psychlops_core.h" +#include "psychlops_cv2_bridge.h" + + +//AppState::ImageByteAlignment = 4; + +namespace Psychlops { + +void Matrix::from(const cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} +void Matrix::convertFromCvMat(Matrix &gray, const cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} +void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, const cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} +void Matrix::convertFromCvMat(Matrix &r, Matrix &g, Matrix &b, Matrix &a, const cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + +void Matrix::to(cv::Mat &target) const +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + +void Matrix::convertToCvMat(const Matrix &gray, cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + +void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + +void Matrix::convertToCvMat(const Matrix &r, const Matrix &g, const Matrix &b, const Matrix &a, cv::Mat &target) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + + +void Image::to(cv::Mat &target) const +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + + +void Image::from(cv::Mat &source) +{ + std::cout << "The compiler did not support OpenCV2." << std::endl; +} + + +} /* <- namespace Psycholops */