public class Main { public static void main(String[] args) throws Exception { // 两个CompletableFuture执行异步查询: CompletableFuture<String> cfQueryFromSina ...
分类:
编程语言 时间:
2021-04-21 12:05:09
阅读次数:
0
Android平台OpenGL ES/Assimp/OpenCV/GLM集成说明 本文代码见: https://github.com/jiangxincode/OpenGLDemo 集成Assimp 下载Assimp 5.0.1版本:https://codeload.github.com/assim ...
分类:
移动开发 时间:
2021-04-20 15:30:14
阅读次数:
0
边界填充 涉及到的函数: copyMakeBorder(src, top, bottom, left, right, borderType, dst=None, value=None) 其中,填充类型borderType主要的有一下四种类型: BORDER_CONSTANT :可以用指定的像素去填充 ...
分类:
其他好文 时间:
2021-04-20 14:56:18
阅读次数:
0
【一】OpenCV 系列文章 【基础类】 OpenCV 之 编译配置 4.5.1 OpenCV 之 Mat 类 OpenCV 之 基本绘图 【图像处理】 OpenCV 之 直方图处理 OpenCV 之 霍夫变换 OpenCV 之 图像平滑 OpenCV 之 空间滤波 OpenCV 之 边缘检测 Op ...
分类:
其他好文 时间:
2021-04-19 15:55:56
阅读次数:
0
什么是Java虚拟机 Java虚拟机是一个可以执行Java字节码的虚拟机进程。 Java源文件被编译成能被Java虚拟机执行的字节码文件。 Java被设计成允许应用程序可以运行在任意的平台, 而不需要程序员为每一个平台单独重写或者是重新编译。 Java虚拟机让这个变为可能,因为它知道底层硬件平台的指 ...
分类:
编程语言 时间:
2021-04-19 15:51:17
阅读次数:
0
参考 OpenCV 角点检测: https://www.cnblogs.com/wj-1314/p/13364875.html 2020年3月17日之后一代传奇算法SIFT专利到期: https://blog.csdn.net/cleanlii/article/details/109561089 P ...
分类:
编程语言 时间:
2021-04-19 15:33:01
阅读次数:
0
软解: AV_PIX_FMT_YUV420P10LE in fmt:64IN Y :0x7f45280084c0074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074.00 074 ...
分类:
其他好文 时间:
2021-04-19 15:05:14
阅读次数:
0
pwd,打印当前目录 ls:List information about the FILEs (the current directory by default) -a/--all -d/--directory dir -a 进入如camera的目录后运行dir、ls会卡住(可以ctrl+c退出)。 ...
分类:
移动开发 时间:
2021-04-16 12:10:03
阅读次数:
0
题解:又是dp想不出来的。\(dp_{i, j}\) 代表了,第 \(i\) 位时(从左到右),余数为 \(j\) 的数量。然后发现,状态转移的时候,如果 \(s_i = ?\) 则 \(dp_{i,(j * 10 + k) \% 13} =\sum dp_{i-1, (j * 10 + k) \% ...
分类:
其他好文 时间:
2021-04-16 12:05:43
阅读次数:
0
import org.junit.Test; public class TestMethods { @Test public void test() { System.out.println("hello world"); } } 1:首先需要导入import org.junit.test这个jar ...
分类:
编程语言 时间:
2021-04-16 12:01:06
阅读次数:
0