Go to the documentation of this file.00001
00010 #include <opencv2/highgui/highgui.hpp>
00011 #include <opencv2/imgproc/imgproc.hpp>
00012 #include <opencv2/core/core.hpp>
00013 #include "RGB2Gray.h"
00014
00015
00016
00017 static const char* jpegdecoder_spec[] =
00018 {
00019 "implementation_id", "RGB2Gray",
00020 "type_name", "RGB2Gray",
00021 "description", "rgb2gray component",
00022 "version", HRPSYS_PACKAGE_VERSION,
00023 "vendor", "AIST",
00024 "category", "example",
00025 "activity_type", "DataFlowComponent",
00026 "max_instance", "10",
00027 "language", "C++",
00028 "lang_type", "compile",
00029
00030
00031 ""
00032 };
00033
00034
00035 RGB2Gray::RGB2Gray(RTC::Manager* manager)
00036 : RTC::DataFlowComponentBase(manager),
00037
00038 m_rgbIn("rgb", m_rgb),
00039 m_grayOut("gray", m_gray),
00040
00041 dummy(0)
00042 {
00043 }
00044
00045 RGB2Gray::~RGB2Gray()
00046 {
00047 }
00048
00049
00050
00051 RTC::ReturnCode_t RGB2Gray::onInitialize()
00052 {
00053 std::cout << m_profile.instance_name << ": onInitialize()" << std::endl;
00054
00055
00056
00057
00058
00059
00060
00061
00062 addInPort("rgbIn", m_rgbIn);
00063
00064
00065 addOutPort("grayOut", m_grayOut);
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077 return RTC::RTC_OK;
00078 }
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103 RTC::ReturnCode_t RGB2Gray::onActivated(RTC::UniqueId ec_id)
00104 {
00105 std::cout << m_profile.instance_name<< ": onActivated(" << ec_id << ")" << std::endl;
00106 return RTC::RTC_OK;
00107 }
00108
00109 RTC::ReturnCode_t RGB2Gray::onDeactivated(RTC::UniqueId ec_id)
00110 {
00111 std::cout << m_profile.instance_name<< ": onDeactivated(" << ec_id << ")" << std::endl;
00112 return RTC::RTC_OK;
00113 }
00114
00115 RTC::ReturnCode_t RGB2Gray::onExecute(RTC::UniqueId ec_id)
00116 {
00117
00118 if (m_rgbIn.isNew()){
00119 m_rgbIn.read();
00120
00121 Img::ImageData& idat = m_rgb.data.image;
00122
00123 cv::Mat src(idat.height, idat.width, CV_8UC3,
00124 idat.raw_data.get_buffer());
00125 cv::Mat dst;
00126 cv::cvtColor(src, dst, CV_RGB2GRAY);
00127
00128 m_gray.data.image.width = idat.width;
00129 m_gray.data.image.height = idat.height;
00130 m_gray.data.image.format = Img::CF_GRAY;
00131 m_gray.data.image.raw_data.length(idat.width*idat.height);
00132 memcpy(m_gray.data.image.raw_data.get_buffer(),
00133 dst.data, idat.width*idat.height);
00134
00135 m_grayOut.write();
00136 }
00137 return RTC::RTC_OK;
00138 }
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177 extern "C"
00178 {
00179
00180 void RGB2GrayInit(RTC::Manager* manager)
00181 {
00182 RTC::Properties profile(jpegdecoder_spec);
00183 manager->registerFactory(profile,
00184 RTC::Create<RGB2Gray>,
00185 RTC::Delete<RGB2Gray>);
00186 }
00187
00188 };
00189
00190