上期給大家介紹了如何使用如何用華為HMS MLKit SDK 三十分鐘在安卓上開(kāi)發(fā)一個(gè)微笑抓拍神器詳情請(qǐng)戳,本次給大家分享一篇新的實(shí)戰(zhàn)經(jīng)驗(yàn)。
不知道大家是否有這樣的經(jīng)歷,忽然學(xué)?;蛘吖拘枰峁┳屘峁﹤€(gè)人的一寸或者兩寸頭像照片,要辦理出入證、學(xué)生證什么的,并且對(duì)照片的底色有要求,有很多人當(dāng)前沒(méi)有拍好的證件照需要到照相館重拍,又或者之前已經(jīng)拍過(guò)了,但是照片底色不滿足要求,小編就有過(guò)類似的經(jīng)歷,當(dāng)時(shí)學(xué)校讓辦個(gè)出入證,學(xué)校照相館又關(guān)門(mén)了,匆匆忙忙用手機(jī)拍了下,然后用床單作為背景應(yīng)付,結(jié)果被老師大罵了一頓。
多年以后華為的HMS MLKit機(jī)器學(xué)習(xí)有了圖像分割的功能,使用這個(gè)SDK開(kāi)發(fā)一個(gè)證件照DIY的小程序,可以完美解決小編當(dāng)年遇到的尷尬。
廢話不多說(shuō),為了能夠制造強(qiáng)烈的視覺(jué)沖擊,小編也是拼了,翻出來(lái)當(dāng)年大學(xué)時(shí)代的囧照,給大家展示下華為 HMS MLKit的強(qiáng)大功能:
怎么樣,效果是不是還可以,只需要寫(xiě)個(gè)小程序就可以快速實(shí)現(xiàn)!
核心提示:此SDK免費(fèi),安卓全機(jī)型覆蓋!
打開(kāi)AndroidStudio項(xiàng)目級(jí)build.gradle文件。
增量添加如下maven地址:
buildscript { repositories { maven {url 'http://developer.huawei.com/repo/'} } }allprojects { repositories { maven { url 'http://developer.huawei.com/repo/'} }}
把人臉識(shí)別的SDK和基礎(chǔ)SDK引入
dependencies{ // 引入基礎(chǔ)SDK implementation 'com.huawei.hms:ml-computer-vision:1.0.2.300' // 引入人臉檢測(cè)能力包 implementation 'com.huawei.hms:ml-computer-vision-image-segmentation-body-model:1.0.2.301' }
要使應(yīng)用程序能夠在用戶從華為應(yīng)用市場(chǎng)安裝您的應(yīng)用程序后,自動(dòng)將最新的機(jī)器學(xué)習(xí)模型更新到用戶設(shè)備,請(qǐng)將以下語(yǔ)句添加到該應(yīng)用程序的AndroidManifest.xml文件中:
<manifest <application <meta-data android:name="com.huawei.hms.ml.DEPENDENCY" android:value= "imgseg "/> </application> </manifest>
<!--使用存儲(chǔ)權(quán)限--><uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
@Overrideprotected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); if (!allPermissionsGranted()) { getRuntimePermissions(); }}@Overridepublic void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { super.onRequestPermissionsResult(requestCode, permissions, grantResults); if (requestCode != PERMISSION_REQUESTS) { return; } boolean isNeedShowDiag = false; for (int i = 0; i < permissions.length; i++) { if (permissions[i].equals(Manifest.permission.READ_EXTERNAL_STORAGE) && grantResults[i] != PackageManager.PERMISSION_GRANTED) { // 如果相機(jī)或者存儲(chǔ)權(quán)限沒(méi)有授權(quán),則需要彈出授權(quán)提示框 isNeedShowDiag = true; } } if (isNeedShowDiag && !ActivityCompat.shouldShowRequestPermissionRationale(this, Manifest.permission.CALL_PHONE)) { AlertDialog dialog = new AlertDialog.Builder(this) .setMessage(getString(R.string.camera_permission_rationale)) .setPositiveButton(getString(R.string.settings), new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); intent.setData(Uri.parse("package:" + getPackageName())); // 根據(jù)包名打開(kāi)對(duì)應(yīng)的設(shè)置界面 startActivityForResult(intent, 200); startActivity(intent); } }) .setNegativeButton(getString(R.string.cancel), new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { finish(); } }).create(); dialog.show(); }}
可以通過(guò)圖像分割檢測(cè)配置器“MLImageSegmentationSetting”創(chuàng)建圖像分割檢測(cè)器。
MLImageSegmentationSetting setting = new MLImageSegmentationSetting.Factory() .setAnalyzerType(MLImageSegmentationSetting.BODY_SEG) .setExact(true) .create(); this.analyzer = MLAnalyzerFactory.getInstance().getImageSegmentationAnalyzer(setting);
可以通過(guò)圖像分割檢測(cè)配置器“MLImageSegmentationSetting”創(chuàng)建圖像分割檢測(cè)器。
MLFrame mlFrame = new MLFrame.Creator().setBitmap(this.originBitmap).create();
// 創(chuàng)建一個(gè)task,處理圖像分割檢測(cè)器返回的結(jié)果。 Task<MLImageSegmentation> task = analyzer.asyncAnalyseFrame(frame); // 異步處理圖像分割檢測(cè)器返回結(jié)果 Task<MLImageSegmentation> task = this.analyzer.asyncAnalyseFrame(mlFrame); task.addOnSuccessListener(new OnSuccessListener<MLImageSegmentation>() { @Override public void onSuccess(MLImageSegmentation mlImageSegmentationResults) { // Transacting logic for segment success. if (mlImageSegmentationResults != null) { StillCutPhotoActivity.this.foreground = mlImageSegmentationResults.getForeground(); StillCutPhotoActivity.this.preview.setImageBitmap(StillCutPhotoActivity.this.foreground); StillCutPhotoActivity.this.processedImage = ((BitmapDrawable) ((ImageView) StillCutPhotoActivity.this.preview).getDrawable()).getBitmap(); StillCutPhotoActivity.this.changeBackground(); } else { StillCutPhotoActivity.this.displayFailure(); } } }).addOnFailureListener(new OnFailureListener() { @Override public void onFailure(Exception e) { // Transacting logic for segment failure. StillCutPhotoActivity.this.displayFailure(); return; } });
this.backgroundBitmap = BitmapUtils.loadFromPath(StillCutPhotoActivity.this, id, targetedSize.first, targetedSize.second);BitmapDrawable drawable = new BitmapDrawable(backgroundBitmap);this.preview.setDrawingCacheEnabled(true);this.preview.setBackground(drawable);this.preview.setImageBitmap(this.foreground);this.processedImage = Bitmap.createBitmap(this.preview.getDrawingCache());this.preview.setDrawingCacheEnabled(false);
就這樣,一款證件DIY的小程序就制作好了,給大家看下Demo的演示效果:
基于圖像分割能力不僅僅可以用來(lái)做證件照DIY程序,還可以實(shí)現(xiàn)如下相關(guān)功能:
工作日 8:30-12:00 14:30-18:00
周六及部分節(jié)假日提供值班服務(wù)