<input id="file" type="file" capture="microphone" accept="image/*"> 1 $("#file").change(function(){ 2 var m_this = this; 3 cutImageBase64(m_this,null, ...
分类:
其他好文 时间:
2020-01-04 16:48:47
阅读次数:
1012
非极大抑制(Non-maximum suppression)python代码实现原创Butertfly 发布于2018-11-20 18:48:57 阅读数 293 收藏展开定位一个物体,最后算法就找出了一堆的方框,我们需要判别哪些矩形框是没用的。非极大值抑制:先假设有6个矩形框,根据分类器类别分类 ...
分类:
编程语言 时间:
2020-01-04 14:08:44
阅读次数:
130
写入文件:要把第二个参数 'r' 改成 'w' ,表示write,即以写入的模式打开文件; 往文件中写入内容,使用write()函数。 例子如下:注意 'w' 写入模式会暴力清空掉原有文件,然后再写入。如果只想增加东西,而不想完全覆盖掉原文件的话,就要使用'a'模式,表示append追加的意思。 1 ...
分类:
编程语言 时间:
2020-01-04 10:42:56
阅读次数:
118
iOS那些值得参考的App项目源码 https://cloud.tencent.com/developer/article/1332192 https://github.com/siegrainwong/WeChat iOS工具——Xcode9无证书真机调试 ...
分类:
移动开发 时间:
2020-01-03 16:46:22
阅读次数:
103
微信提供给开发者的测试账号平台 https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index 微信网页开发文档 https://developers.weixin.qq.com/doc/offia ...
分类:
微信 时间:
2020-01-03 12:21:00
阅读次数:
117
1. 介绍 Zygote是Android系统创建新进程的核心进程,负责启动Dalvik虚拟机,加载一些必要的系统资源和系统类,启动system_server进程,随后进入等待处理app应用请求 Zygote涉及的主要代码如下 frameworks/base/cmds/app_process/App_... ...
分类:
移动开发 时间:
2020-01-03 00:40:29
阅读次数:
196
DG参数 LOG_ARCHIVE_DEST_n This chapter provides reference information for the attributes of the LOG_ARCHIVE_DEST_n initialization parameter. The followi ...
分类:
其他好文 时间:
2020-01-01 23:32:20
阅读次数:
60
原文:C# compare different Encoding pattern between UTF8 and UTF32 based on Md5 1 using System; 2 using System.Text; 3 using System.IO; 4 using System.Se... ...
import pandas as pd import numpy as np import matplotlib.pyplot as plt class linear_regression(object): 计算均方误差损失 def compute_loss(self,y,y_hat): retur ...
分类:
其他好文 时间:
2020-01-01 18:39:11
阅读次数:
101
1.安装vsftpd软件包]# yum -y install vsftpd2.重起vsftpd服务]# systemctl start vsftpd]# systemctl enable vsftpd FTP默认共享路径:/var/ftp3.物理机访问测试zk ~]# firefox ftp://1 ...
分类:
其他好文 时间:
2020-01-01 11:37:23
阅读次数:
72