簡體   English   中英

firebase ML kit 美學照片質量

[英]firebase ML kit Aesthetic photo Quality

對於一個安卓應用程序,我想在上傳之前檢查圖像的質量,比如給它打分並根據這個分數接受它。 可能不相關,但我確實閱讀了以下內容:

形象審美評估

https://www.codementor.io/kushwahamit2016/image-aesthetic-assessment-a0a3etnhk谷歌的新人工智能可以在技術和美學質量上對照片進行評分

https://petapixel.com/2017/12/26/googles-new-ai-can-score-photos-technical-aesthetic-quality/

使用 Python 進行基本圖像數據分析:第 1 部分

https://dzone.com/articles/image-data-analysis-using-numpy-amp-opencv

但我想知道是否有任何庫(如果沒有,我們可以在 firebase-ml-kit 或任何其他工具包中找到它自己在移動設備上運行)最好的問候

照片澄清:

在此處輸入圖像描述

如果您指的是質量分辨率,則可以按以下方式檢查。

Bitmap bmp;
//....
//load your bitmap to bmp
//....
int width, height;
width = bmp.getWidth();
height = bmp.getHeight();

暫無
暫無

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

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