哈利路亚
Let's take one million years picnic
欢迎来到Sean Cleveland的博客
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页

2021年5月2日

摘要: 今天我们来使用最简单的办法创建一个侧边栏,代码如下: <androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://sch 阅读全文
posted @ 2021-05-02 20:13 哈利路亚#0207 阅读(39) 评论(0) 推荐(0) 编辑

2021年5月1日

摘要: 网络通信时经常需要加载动画,那么今天我们来做一个显示加载弹框的dialog吧 java调用代码如下: Dialog dialogs = new Dialog(this, R.style.DialogTheme); LayoutInflater inflaters = LayoutInflater.f 阅读全文
posted @ 2021-05-01 21:28 哈利路亚#0207 阅读(41) 评论(0) 推荐(0) 编辑

2021年4月30日

摘要: 嗯……今天我们来总结一下四月份吧 相较于三月份,四月份真的是没做什么东西……暌违一个月重新做了安卓结果这个还有点做不完的嫌疑……是不是有点太着急了呢? 另外我这个组其他两位……怎么说呢……不干活?是有这种感觉的 所以只能靠我自己了吗?! 离期末还很久,但明天开始就要第一阶段冲刺了啊……呼,加油加油! 阅读全文
posted @ 2021-04-30 21:54 哈利路亚#0207 阅读(55) 评论(0) 推荐(0) 编辑

2021年4月29日

摘要: public class Utils { // 复制莫模型文件到缓存目录 public static void copyFileFromAsset(Context context, String oldPath, String newPath) { try { // 预测模型文件在assets中的位 阅读全文
posted @ 2021-04-29 21:20 哈利路亚#0207 阅读(54) 评论(0) 推荐(0) 编辑

2021年4月28日

摘要: imageview都是那种方方的,但如果用在图像上要怎么办呢 今天我们就来写一个能显示圆形图片的Circleview 代码如下: public class CircleImageview extends androidx.appcompat.widget.AppCompatImageView { p 阅读全文
posted @ 2021-04-28 23:01 哈利路亚#0207 阅读(40) 评论(0) 推荐(0) 编辑

2021年4月27日

摘要: 今天来请求请求权限吧 //权限请求 private void requestPermissions() { List<String> permissionList = new ArrayList<>(); if (ContextCompat.checkSelfPermission(this, Man 阅读全文
posted @ 2021-04-27 22:29 哈利路亚#0207 阅读(41) 评论(0) 推荐(0) 编辑

2021年4月26日

摘要: 今天来编写保存图片函数 //图片储存 public static String saveBitmap(String name, Bitmap bm, Context mContext) { String TargetPath = mContext.getFilesDir() + "/images/" 阅读全文
posted @ 2021-04-26 20:10 哈利路亚#0207 阅读(41) 评论(0) 推荐(0) 编辑

2021年4月25日

摘要: 今天我们尝试了paddle-lite框架,发现意外可行 那么我们来写一下图像预处理函数: package com.example.ironfarm; import android.graphics.Bitmap; import android.graphics.BitmapFactory; impo 阅读全文
posted @ 2021-04-25 21:55 哈利路亚#0207 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 今天我们本来要实现安卓端的预测来着,但是这个mobile框架出现了一些小问题 具体来说是出现在so文件里的空指针异常,但so的结构太复杂我们看不太懂所以可能得换个办法…… 今天就先到此为止吧 阅读全文
posted @ 2021-04-25 00:07 哈利路亚#0207 阅读(27) 评论(0) 推荐(0) 编辑

2021年4月22日

摘要: 模型我们训练出来了,但是要想实际部署到移动端,我们就需要paddle的框架 GitHub上有开源的paddlemobile框架,也有paddle-Lite框架,我们先选择mobile 在那之前,我们要先将模型转化为opt的.nb格式 代码如下: # 引用Paddlelite预测库 from sys 阅读全文
posted @ 2021-04-22 22:04 哈利路亚#0207 阅读(62) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页
Live2D