OSDN Git Service

2.0.0
[psychlops/cpp.git] / psychlops / extension / FileFormat / OpenCV / psychlops_g_OPENCV_bridge_dummy.cpp
1 /*
2  *  psychlops_g_PNG_bridge.cpp
3  *  Psychlops Standard Library (Universal)
4  *
5  *  Last Modified 2006/08/22 by Kenchi HOSOKAWA
6  *  (C) 2006- Kenchi HOSOKAWA, Kazushi MARUYA and Takao SATO
7  */
8
9 #include <stdio.h>
10 #include <stdlib.h>
11
12 #include "../../../core/ApplicationInterfaces/psychlops_code_exception.h"
13 #include "../../../core/graphic/psychlops_g_image.h"
14 #include "psychlops_g_OPENCV_bridge.h"
15
16
17 namespace Psychlops {
18 namespace IMAGE_FORMATS {
19
20
21         OPENCV_BRIDGE::OPENCV_BRIDGE() {
22         }
23         OPENCV_BRIDGE::~OPENCV_BRIDGE() {
24         }
25
26
27         void OPENCV_BRIDGE::load(const char *file_name, Image * target) {\r
28                 std::cout << "The compiler did not support OpenCV2." << std::endl;
29         }
30         void OPENCV_BRIDGE::save(const char *file_name, Image * target) {\r
31                 std::cout << "The compiler did not support OpenCV2." << std::endl;
32         }
33
34
35 }
36 }