对于一个Android应用程序,我想在上传图像之前检查图像的质量,可以说给它打一个分数,并根据该得分接受它。 可能不相关,但我确实阅读了以下内容:
图像美学评估
https://www.codementor.io/kushwahamit2016/image-aesthetic-assessment-a0a3etnhk Google的新AI可以对照片的技术和美学质量进行评分
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或任何其他工具包中找到的) 最好的问候
需要澄清的照片: enter image description here
答案 0 :(得分:0)
如果您指的是质量分辨率,则可以按以下方法进行检查。
Bitmap bmp;
//....
//load your bitmap to bmp
//....
int width, height;
width = bmp.getWidth();
height = bmp.getHeight();