【关键词】
机器学习服务、文本识别、身份证识别
【问题描述1】
机器学习服务的文本识别能力,是否支持草书等?
【解决方案】
草书是不支持的,目前建议使用较为规范的字体测试。
【问题描述2】
机器学习服务是否支持训练模型?
【解决方案】
目前不支持该能力。
【问题描述3】
身份证识别服务,返回bitmap被压缩
【解决方案】
身份证识别返回图片固定分辨率为:640*640文章来源:https://www.toymoban.com/news/detail-735534.html
处理建议:通过下列代码对图片缩放可将图片纠正:目测传参长600宽360效果较好,具体可自行调整。文章来源地址https://www.toymoban.com/news/detail-735534.html
public Bitmap setImgSize(Bitmap bm, int newWidth ,int newHeight){
// 获得图片宽高.
int width = bm.getWidth();
int height = bm.getHeight();
// 计算缩放比例.
float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;
// 取得想要缩放的matrix参数.
Matrix matrix = new Matrix();
matrix.postScale(scaleWidth, scaleHeight);
// 得到新的图片.
Bitmap newbm = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, true);
return newbm;
}
到了这里,关于【HMS Core】机器学习服务热门问题合集的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!