android dft() function got hang and stopped working

匆匆过客 提交于 2019-12-23 05:26:47

问题


I got a problem, my android stopped working.

This is my piece of program:

I'm using opencv-tutorial-mixed-processing.

case VIEW_MODE_SALIENCY:
    // input frame has  scale format
    ImgRe = inputFrame.gray();
    //ImgIm = inputFrame.();            
    ImgIm = Mat.zeros(ImgRe.size(), CvType.CV_8U);

    //List<Mat> ImgReImgIm = Arrays.asList(ImgRe, ImgIm);
    //Core.merge(ImgReImgIm, Fourier);
    Core.dft(ImgRe, tmp1, Core.DFT_REAL_OUTPUT, 0);

来源:https://stackoverflow.com/questions/23010407/android-dft-function-got-hang-and-stopped-working

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!