這篇文章主要介紹了Android中Zxing如何轉(zhuǎn)換豎屏掃描且提高識(shí)別率,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、網(wǎng)站制作、海寧網(wǎng)絡(luò)推廣、小程序定制開發(fā)、海寧網(wǎng)絡(luò)營(yíng)銷、海寧企業(yè)策劃、海寧品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們大的嘉獎(jiǎng);成都創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供海寧建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com最近的一個(gè)Android需要用到掃碼功能,用的是Zxing開源庫(kù)。Zxing的集成就不說(shuō)了,但是Zxing默認(rèn)的是橫屏掃碼,在實(shí)際生產(chǎn)中并不適用,需要改為豎屏掃描。
轉(zhuǎn)豎屏步驟:
1>. AndroidManifest.xml中把a(bǔ)ctivity標(biāo)簽CaptureActivity部分的screenOrientation改為portrait。
android:screenOrientation="portrait"
2>. CameraManager類中的getFramingRectInPreview()方法,將left, right, top, bottom改變。
//豎屏 rect.left = rect.left * cameraResolution.y / screenResolution.x; rect.right = rect.right * cameraResolution.y / screenResolution.x; rect.top = rect.top * cameraResolution.x / screenResolution.y; rect.bottom = rect.bottom * cameraResolution.x / screenResolution.y;
3>. CameraConfigurationManager類中的setDesiredCameraParameters(OpenCamera camera, boolean safeMode)方法,在setParameters之前添加
theCamera.setDisplayOrientation(90);
4>. DecodeHandler類中的decode(byte[] data, int width, int height)方法,在PlanarYUVLuminanceSource source = activity.getCameraManager().buildLuminanceSource(data, width, height)之前添加
byte[] rotatedData = new byte[data.length]; for (int y = 0; y < height; y++) { for (int x = 0; x < width; x++) rotatedData[x * height + height - y - 1] = data[x + y * width]; } int tmp = width; // Here we are swapping, that's the difference to #11 width = height; height = tmp; data = rotatedData;
此時(shí),豎屏掃描已經(jīng)可以實(shí)現(xiàn)了,但是掃描復(fù)雜的圖碼時(shí),分辨率低的已經(jīng)分不清紋理了,很難識(shí)別出來(lái),所以需要優(yōu)化識(shí)別率。
識(shí)別率優(yōu)化:
1>. CameraConfigurationUtils類中的findBestPreviewSizeValue(Camera.Parameters parameters, Point screenResolution)方法,將double screenAspectRatio = screenResolution.x / (double) screenResolution.y改為
double screenAspectRatio; if (screenResolution.x > screenResolution.y) { screenAspectRatio = (double) screenResolution.x / (double) screenResolution.y; } else { screenAspectRatio = (double) screenResolution.y / (double) screenResolution.x; }
2>. 至此,識(shí)別率已經(jīng)很大程度上的提高了,若在要提高識(shí)別率,可通過(guò)修改CameraManager類中的MAX_FRAME_WIDTH和MAX_FRAME_HEIGHT來(lái)提高精度。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Android中Zxing如何轉(zhuǎn)換豎屏掃描且提高識(shí)別率”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來(lái)學(xué)習(xí)!