-
图像识别
public static Bitmap doPretreatment(Bitmap img) {
setImgInfo(img);
Bitmap grayImg = getGrayImg();
int[] p = new int[2];
int maxGrayValue = 0, minGrayValue = 255;
// 计算最大及最小灰度值
getMinMaxGrayValue(p);
minGrayValue = p[0];
maxGrayValue = p[1];
// 计算迭代法阈值
int T1 = getIterationHresholdValue(minGrayValue, maxGrayValue);
// // 计算大津法阈值
// int T2 = getOtsuHresholdValue(minGrayValue, maxGrayValue);
// // 计算最大熵法阈值
// int T3 = getMaxEntropytHresholdValue(minGrayValue, maxGrayValue);
// int[] T = { T1, T2, T3 };
//
// Bitmap result = selectBinarization(T);
Bitmap result = binarization(T1);
return result;
}
- 2022-01-25 19:56:39下载
- 积分:1
-
自定义带动画的对话框
此源码是讲述如何自定义自己喜欢的对话框,因为有些Android系统再带的对话框样式并不是很好看,所以,很多开发者都会选择自己去自定义;而这里讲述的就是如何自定义对话框,并且自带各种动画效果的。
- 2022-05-17 12:31:04下载
- 积分:1
-
android 录制视频 并实时上传至服务器 在线观看 附完整源码下载
用android 摄像头实时监控,并上传至服务器 实例下载,仅供学习交流使用
- 2013-08-15下载
- 积分:1
-
Android富文本编辑器源码+服务端 完整实例下载
Android富文本编辑器源码+服务端 完整实例下载
- 2014-09-15下载
- 积分:1
-
android-flip-lock-screen
android翻页锁屏 贝塞尔曲线演示程序APK(android flip lock screen)
- 2014-05-08 10:45:20下载
- 积分:1
-
Android-API-
android API chm文档,希望对大家有帮助。
里面邮箱系的说明,更主要的是他是中文版的哦(The Android API chm document, we want to help. Inside the mailbox Department, the main thing is that he is a Chinese version of Oh)
- 2013-04-22 14:06:36下载
- 积分:1
-
FrameLayoutTest
android学习工程,主要用framelayout帧布局来实现霓虹灯效果,类似于流水灯一样。(android study engineering, layout of framelayout frame to achieve the neon effect, similar to the light water.)
- 2013-04-23 23:20:25下载
- 积分:1
-
ComposingView
View used to show composing string (The Pinyin string for the unselected syllables and the Chinese string for the selected syllables.) for Andriod.
- 2013-10-21 00:11:39下载
- 积分:1
-
easypermissions
说明: easypermissions框架的用法(Usage of easypermissions framework)
- 2019-06-04 09:42:35下载
- 积分:1
-
Androidprogress
基于android的进度条进行各种设计,样例的教学说明,很实用(Android progress bar with a variety of design, sample teaching instructions, very useful)
- 2012-03-08 22:28:11下载
- 积分:1