C#没指针如何调用C++带指针的函数, (图像处理)
void hq4x_32( unsigned char * pIn, unsigned char * pOut, int Xres, int Yres, int BpL )pIn, pOut 为输入输出图像指针。
/* [DllImport("hq4x.dll")]
public static extern void hq4x_32(Ptr* pIn, Ptr* pOut, int Xres, int Yres, int BpL );*/
我想把picturebox1.image 作为输入,把处理后的结果显示在picturebox2中,好晕。
