为了账号安全,请及时绑定邮箱和手机立即绑定

年龄和性别的view

年龄和性别的view应该是根据脸的大小进行缩放,而不是根据ImageView和图片的大小进行缩放吧?


int ageWidth = ageBitmap.getWidth();

int ageHeight = ageBitmap.getHeight();

Log.d("FacePlay", "ageWidth " + ageWidth + " ageHeight " + ageHeight);

if (bitmap.getWidth() < mPhoto.getWidth() && bitmap.getHeight() < mPhoto.getHeight() ) {

float ratio = Math.max(bitmap.getWidth() * 1.0f / mPhoto.getWidth() , bitmap.getHeight() * 1.0f / mPhoto.getHeight());

   ageBitmap = Bitmap.createScaledBitmap(ageBitmap, (int)( ageWidth * ratio), (int) (ageHeight * ratio), false);

   Log.d("FacePlay", "ageWidth " + ageBitmap.getWidth() + " ageHeight " + ageBitmap.getHeight());

}

canvas.drawBitmap(ageBitmap, x - ageBitmap.getWidth() / 2, y - h/2 - ageBitmap.getHeight(), null);



这样写得到的效果:

http://img1.sycdn.imooc.com//5563c612000138a206790633.jpg

麻烦老师看看问题出在哪里?

正在回答

2 回答

你好,是根据图片和ImageView的尺寸进行缩放,你这里检查下你创建的bitmap的尺寸。

0 回复 有任何疑惑可以回复我~

哥们儿 解决了没   我的显示也特别大    

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
How-old 刷脸神器
  • 参与学习       31545    人
  • 解答问题       155    个

通过第三方本课程教大家实现人脸识别,通过案例讲解原理

进入课程

年龄和性别的view

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信