最近在写 OpenCV 在 Android 上用于可见光定位的 APP,在轮廓识别的时候偶然用手机里的二次元图片作为样本进行测试,发现线条十分明显,就像下面这张图这样:
这不就是线稿吗,或许可以写一个一键将图片转成线稿的 APP,万一以后用得到呢。而且对于绘画爱好者来说至少也很方便和有用处。
于是将自己用来写可见光定位的项目复制一份,修改包名,换个 Logo 和背景图,然后重新设置了 UI,加了长按保存图片的功能,最后各种测试和 debug,两天时间,成功做出了一个稳定的版本,然后将发行版和项目放到了我的码云仓库上。
关键部分的代码:#
保存图片:#
//长按保存图片
public static void saveBitmap(ImageView view, String filePath) {
Drawable drawable = view.getDrawable();
if (drawable == null) {
return;
}
FileOutputStream outStream = null;
File file = new File(filePath);
if (file.isDirectory()) {//如果是目录不允许保存
return;
}
try {
outStream = new FileOutputStream(file);
Bitmap bitmap = ((BitmapDrawable) drawable).getBitmap();
bitmap.compress(Bitmap.CompressFormat.PNG, 100, outStream);
outStream.flush();
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (outStream != null) {
outStream.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
刷新媒体库:#
//刷新媒体库
private void updateGallery(String filename)//filename是我们的文件全名,包括后缀哦
{
MediaScannerConnection.scanFile(this,
new String[] { filename }, null,
new MediaScannerConnection.OnScanCompletedListener() {
public void onScanCompleted(String path, Uri uri) {
Log.i("ExternalStorage", "Scanned " + path + ":");
Log.i("ExternalStorage", "-> uri=" + uri);
}
});
}
生成目录和随机文件名:#
//随机文件名
private String generateFileName() {
String fileList = getExternalStorageDirectory().getAbsolutePath() + File.separator + "LineDraft" + File.separator;
File mkdir = new File(fileList);
if(!mkdir.exists()) mkdir.mkdir();
@SuppressLint("SimpleDateFormat") DateFormat format = new SimpleDateFormat("yyyyMMddHHmmss");// 获得当前时间
String formatDate = format.format(new Date());// 转换为字符串
int random = new Random().nextInt(10000);// 随机生成文件编号
return (fileList + formatDate + random + ".png");
}
预览:
欢迎界面 | 主界面 | 转换并保存 |
由于只使用了 ARM 架构的 OpenCV 库,在红米 Note1 和小米 6X 上测试时均可流畅运行,因而目前认为支持现有的几乎所有的安卓智能手机,对安卓平板是否兼容尚不可知。