WebCam克隆保存预览重叠的图像

时间:2019-03-29 21:47:10

标签: c# aforge

我正在使用AForge从平板电脑相机获取图片。

在我的旧平板电脑Win7中运行良好。

现在在Win10平板电脑中,我得到了重叠的图片:

enter image description here

代码相同:

public int[] fibArray(int n){

  int[] result = new int[n];
  if(n<=2){
    result[0] = 1;
    result[1] = 1;
  }else{
    int[] previous = fibArray(n-1); // note the parens, not braces
    result[n] = previous[n-1] + previous[n-2]; // may be subject to off by one error, I trust you can fix that
  }
  return result;
  }

我不知道发生了什么。有想法吗?

0 个答案:

没有答案