簡體   English   中英

cverror android斷言失敗(scn == 3)Android

[英]cverror android assertion failed (scn == 3) Android

我正在嘗試在android中使用自適應閾值處理(Bitmap),這需要將其更改為Mat然后將其轉換為灰度。

下面是我的代碼,從創建位圖開始。 它們被命名為crop,因為我剛剛在此之前裁剪了照片。

            Bitmap bmCrop = BitmapFactory.decodeStream(iStream);
            Bitmap bmThreshed = null;
            /*
             * Initialize the Mats
             */
            Mat threshed = new Mat(bmCrop.getHeight(),bmCrop.getWidth(), CvType.CV_8UC1, new Scalar(4));//, new Scalar(4)
            //Mat crop = new Mat();
            Mat crop = new Mat(bmCrop.getHeight(),bmCrop.getWidth(), CvType.CV_8UC1,new Scalar(4));//, new Scalar(4)
            /*
             * Convert the Mats to Grayscale
             */
            if(!threshed.empty())
                Imgproc.cvtColor(threshed, threshed, Imgproc.COLOR_RGB2GRAY,1);// CURRENTLY BREAKING HERE
            if(!crop.empty())
                Imgproc.cvtColor(crop, crop, Imgproc.COLOR_BGR2GRAY,1);         


            Utils.bitmapToMat(bmCrop, crop);

            // Mat src, Mat dst, double maxValue, int adaptiveMethod, int thresholdType, int blockSize, double C
            Imgproc.adaptiveThreshold(crop, threshed, 255, Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY_INV, 15, 8);

            Utils.matToBitmap(threshed, bmThreshed);
            bmThreshed = bmCrop;

它目前打破了“Imgproc.cvtColor(threshed,threshed,Imgproc.COLOR_RGB2GRAY,1)”這一行,我嘗試在Mat上進行cvtColor。

以下是LogCat的輸出:

05-28 11:25:21.172: E/cv::error()(32505): OpenCV Error: Assertion failed (scn == 3 || scn == 4) in void cv::cvtColor(cv::InputArray, cv::OutputArray, int, int), file /home/reports/ci/slave/50-SDK/opencv/modules/imgproc/src/color.cpp, line 3414
05-28 11:25:25.697: D/AndroidRuntime(32505): Shutting down VM
05-28 11:25:25.707: W/dalvikvm(32505): threadid=1: thread exiting with uncaught exception (group=0x414b1930)
05-28 11:25:25.747: E/AndroidRuntime(32505): FATAL EXCEPTION: main
05-28 11:25:25.747: E/AndroidRuntime(32505): CvException [org.opencv.core.CvException: /home/reports/ci/slave/50-SDK/opencv/modules/imgproc/src/color.cpp:3414: error: (-215) scn == 3 || scn == 4 in function void cv::cvtColor(cv::InputArray, cv::OutputArray, int, int)
05-28 11:25:25.747: E/AndroidRuntime(32505): ]
05-28 11:25:25.747: E/AndroidRuntime(32505):    at org.opencv.imgproc.Imgproc.cvtColor_0(Native Method)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at org.opencv.imgproc.Imgproc.cvtColor(Imgproc.java:4017)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at com.activity.IMGP_Camera$1.onManagerConnected(IMGP_Camera.java:263)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at org.opencv.android.AsyncServiceHelper$1.onServiceConnected(AsyncServiceHelper.java:318)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.app.LoadedApk$ServiceDispatcher.doConnected(LoadedApk.java:1101)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.app.LoadedApk$ServiceDispatcher$RunConnection.run(LoadedApk.java:1118)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.os.Handler.handleCallback(Handler.java:725)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.os.Handler.dispatchMessage(Handler.java:92)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.os.Looper.loop(Looper.java:137)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at android.app.ActivityThread.main(ActivityThread.java:5226)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at java.lang.reflect.Method.invokeNative(Native Method)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at java.lang.reflect.Method.invoke(Method.java:511)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:795)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:562)
05-28 11:25:25.747: E/AndroidRuntime(32505):    at dalvik.system.NativeStart.main(Native Method)

斷言失敗表示cvtColor()的輸入圖像沒有3或4個通道。 的問題是,你初始化threshed類型CV_8UC1 (這是單通道灰度),但是然后調用cvtColor()與代碼RGB2GRAY ,這需要一個3通道RGB圖像。

你並不需要調用cvtColor()threshed可言,因為它已經在灰度。 並且,假設您的目標是將裁剪的圖像轉換為灰度,則在使用數據填充Mat ,您將需要進行顏色轉換。 因此,代碼的相關部分可能如下所示:

        Mat threshed = new Mat(bmCrop.getHeight(),bmCrop.getWidth(), CvType.CV_8UC1, new Scalar(4));//, new Scalar(4)
        //Mat crop = new Mat();
        Mat crop = new Mat(bmCrop.getHeight(),bmCrop.getWidth(), CvType.CV_8UC1,new Scalar(4));//, new Scalar(4)

        Utils.bitmapToMat(bmCrop, crop);
        if(!crop.empty())
            Imgproc.cvtColor(crop, crop, Imgproc.COLOR_BGR2GRAY,1);

免責聲明:我不熟悉Java或OpenCV Java API,因此可能需要調整此代碼。

這是我現在正在使用的代碼。 我遇到的問題是我在初始化Mats之后和執行cvtColor()之前沒有做Utils.bitmapToMat()。

            /*
             * Initialize the bitmaps
             */
            Bitmap bmCrop = BitmapFactory.decodeStream(iStream);
            Bitmap bmThreshed = bmCrop;
            /*
             * Initialize the Mats
             */
            Mat threshed = new Mat(bmCrop.getWidth(),bmCrop.getHeight(), CvType.CV_8UC1);
            Utils.bitmapToMat(bmCrop, threshed);

            Mat crop = new Mat(bmCrop.getWidth(),bmCrop.getHeight(), CvType.CV_8UC1);
            Utils.bitmapToMat(bmCrop, crop);
            /*
             * Convert the Mats to Grayscale
             */
            if(!threshed.empty())
                Imgproc.cvtColor(threshed, threshed, Imgproc.COLOR_RGB2GRAY);
            if(!crop.empty())
                Imgproc.cvtColor(crop, crop, Imgproc.COLOR_BGR2GRAY);           

            /*
             * Use Adaptive Thresholding on the grayscaled Mats
             * crop -> threshed
             * Mat src, Mat dst, double maxValue, int adaptiveMethod, int thresholdType, int blockSize, double C
             */
            Imgproc.adaptiveThreshold(crop, threshed, 255, Imgproc.ADAPTIVE_THRESH_MEAN_C, Imgproc.THRESH_BINARY, 15, 8);//15, 8 were original tests. Casey was 75,10

            Utils.matToBitmap(threshed, bmThreshed);
            bmThreshed = bmCrop;

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM