示例#1
0
void ImageWorkShop::slotColorMapResult(){
	if(colorMapSource.rows == 0 || colorMapTarget.rows == 0)
		return;
	ColorTransfer clt(colorMapSource, colorMapTarget);  
	cv::imshow("color map result", clt.result) ;

}
示例#2
0
文件: ProxyMain.cpp 项目: zxdyb/proxy
int main(int argc, char* argv[])
{

    if (4 < argc)
    {
        std::string strSrcIDBegin = argv[1];
        std::string strDstIDBegin = argv[2];
        unsigned int uiLinkNum = (unsigned int)atoi(argv[3]);


        std::string strMsgBodyLen = argv[4];
        transform(strMsgBodyLen.begin(), strMsgBodyLen.end(), strMsgBodyLen.begin(), tolower);
        boost::int32_t iPos = 0;
        std::string strLen;
        boost::uint32_t uiLen = 0;
        //int ipos = std::string::npos;
        //int ifind = strMsgBodyLen.rfind('k');
        if ((boost::int32_t)std::string::npos != (iPos = strMsgBodyLen.rfind('k')))
        {
            strLen = strMsgBodyLen.substr(0, iPos);
            uiLen = (boost::uint32_t)atoi(strLen.c_str());
            uiLen = uiLen * 1024;
        }
        else if ((boost::int32_t)std::string::npos != (iPos = strMsgBodyLen.rfind('m')))
        {
            strLen = strMsgBodyLen.substr(0, iPos);
            uiLen = (boost::uint32_t)atoi(strLen.c_str());
            uiLen = uiLen * 1024 * 1024;
        }
        else
        {
            uiLen = (boost::uint32_t)atoi(strMsgBodyLen.c_str());
        }

        char *pIPAddress = argv[5];
        char *pIPPort = argv[6];
        char *pIsOnlyOneDst = argv[7];
        bool IsOnlyOneDst = false;
        if (std::string("true") == std::string(pIsOnlyOneDst))
        {
            IsOnlyOneDst = true;
        }
        else if (std::string("false") == std::string(pIsOnlyOneDst))
        {
            IsOnlyOneDst = false;
        }
        else
        {
            IsOnlyOneDst = false;
        }

        boost::uint32_t uiRunModule = ProxyClient::SEND;
        if (std::string("send") == std::string(argv[8]))
        {
            uiRunModule = ProxyClient::SEND;
        }
        else if (std::string("receive") == std::string(argv[8]))
        {
            uiRunModule = ProxyClient::RECEIVE;
        }
        else if (std::string("both") == std::string(argv[8]))
        {
            uiRunModule = ProxyClient::SEND | ProxyClient::RECEIVE;
        }

        printf("src id is %s, dst id is %s, only one dst is %s, link num is %u, msg len is %u, remote ip is %s, port is %s\n",
               strSrcIDBegin.c_str(), strDstIDBegin.c_str(), IsOnlyOneDst ? "true" : "false", uiLinkNum, uiLen, pIPAddress, pIPPort);


        //ProxyClient clt("23", "25", false, 1, 100, "172.16.23.181", "6666");
        ProxyClient clt(strSrcIDBegin, strDstIDBegin, IsOnlyOneDst, uiLinkNum, uiLen, pIPAddress, pIPPort);

        clt.Run(1, uiRunModule);

        //boost::this_thread::sleep(boost::posix_time::seconds(20));
    }
    else
    {

        unsigned short usPort = 6789;
        if (2 <= argc)
        {
            usPort = (unsigned short)atoi(argv[1]);
        }

        unsigned int uiThreadNum = 2;
        if (3 <= argc)
        {
            uiThreadNum = (unsigned int)atoi(argv[2]);
        }

        bool IsNeedDaemonRun = false;
        if (4 <= argc && std::string("-d") == argv[3])
        {
            IsNeedDaemonRun = true;
        }

        if (IsNeedDaemonRun)
        {
            ForkChild();
        }

        InitLog();

        LOG_INFO_RLD("Proxy Server begin...");

        LOG_INFO_RLD("Proxy runing thread number is " << uiThreadNum << " port is " << usPort << ", daemon status is " << IsNeedDaemonRun);

        ProxyHub *phb = NULL;
        try
        {
            phb = new ProxyHub(usPort);
        }
        catch (...)
        {
            LOG_ERROR_RLD("Create proxy server failed, exit...");
            return 0;
        }

        const std::string &strSrcIDReplaceByIncSeq = GetConfig("General.SrcIDReplaceByIncSeq");
        bool blSrcIDReplaceByIncSeq = false;
        if (!strSrcIDReplaceByIncSeq.empty())
        {
            blSrcIDReplaceByIncSeq = boost::lexical_cast<bool>(strSrcIDReplaceByIncSeq);
        }
        phb->SetSrcIDReplaceByIncSeq(blSrcIDReplaceByIncSeq);

        bool blCreateSIDOnConnected = false;
        const std::string &strCreateSIDOnConnected = GetConfig("General.CreateSIDOnConnected");
        if (!strCreateSIDOnConnected.empty())
        {
            blCreateSIDOnConnected = boost::lexical_cast<bool>(strCreateSIDOnConnected);
        }
        phb->SetCreateSIDOnConnected(blCreateSIDOnConnected);

        unsigned int uiAsyncReadTimeOut = 10;
        const std::string &strAsyncReadTimeOut = GetConfig("General.AsyncReadTimeOut");
        if (!strAsyncReadTimeOut.empty())
        {
            uiAsyncReadTimeOut = boost::lexical_cast<unsigned int>(strAsyncReadTimeOut);
        }
        phb->SetAsyncReadTimeOut(uiAsyncReadTimeOut);

        const std::string &strAuth = GetConfig("Auth.Enable");
        bool blAuth = false;
        if (!strAuth.empty() && !blSrcIDReplaceByIncSeq) //不能同时开启序列号自增开关,一旦开始,则鉴权配置不起作用,默认关闭
        {
            blAuth = boost::lexical_cast<bool>(strAuth);

            if (blAuth) //若是启用了,则继续解析鉴权参数
            {
                const std::string &strAuthSrcIP = GetConfig("Auth.SrcIP");
                const std::string &strAuthSrcPort = GetConfig("Auth.SrcPort");

                if (strAuthSrcIP.empty() || strAuthSrcPort.empty())
                {
                    blAuth = false;
                }
                else
                {
                    phb->SetAuthSrcIP(strAuthSrcIP);
                    phb->SetAuthSrcPort(boost::lexical_cast<int>(strAuthSrcPort));
                }
            }
        }
        phb->SetAuthEnable(blAuth);


        LOG_INFO_RLD("Proxy begin running...");
        phb->Run(uiThreadNum);
    }

    return 0;
}