RPolar项目进度记录

PolarMesDlg.cpp,中的

void PolarMesDlg::CImage2CImagedata(unsigned char* src,CImage* desimg,unsigned char* des,int w,int h ,int channel)
{
    for(int i =0;i<w*h*channel;i++)
        des[i] = src[i];
    data2CImage(des,desimg,w,h,channel);
}

原文地址:https://www.cnblogs.com/wxl845235800/p/8053578.html