Don't worry about that.
VS 2013 is not support MFC library for MBCS.
They recommend unicode default.
So it can solve easily.
Go below url, download and install.
iplImage img; //BGR 3 colors image
iplImage B,G,R;
cvCvtPixToPlane(img, B, G, R, NULL);
Mat img; //BGR 3 colors image
vector< Mat > BGR(3);
split(img, BGR);
BGR[0]; //B Mat
BGR[1]; //G Mat
BGR[2]; //R Mat
iplImage B,G,R;
iplImage BGR;
cvCvtPlaneToPix(B, G, R, NULL, BGR);
vector< Mat > BGR(3);
Mat img;
merge(BGR, img);