最新 最热

【VS Code扩展】获取编辑框中的文本

editor._documentData._lines会返回一个字符串数组,我们可以通过textArray.length获取到代码的行数,也可以通过连接它们达到与获取整段文本一样的效果。

2022-01-12
0

ACMSGURU 149 - Computer Network

A school bought the first computer some time ago. During the recent years the school bought N-1 new computers. Each new computer was connected to one of settled...

2021-12-18
0

tail命令的常见用法

tail 是Linux中最常用的一个命令了, 他可以显示一个或者多个文件, 同时可以与管道符结合, tail最常用的是监视和分析日志文件等, 还可以和grep搭配使用

2021-11-30
0

LeetCode 0195 - Tenth Line

Given a text file file.txt, print just the 10th line of the file.

2021-08-11
0

HDU 1512 - Monkey King

Once in a forest, there lived N aggressive monkeys. At the beginning, they each does things in its own way and none of them knows each other. But monkeys can’t ...

2021-08-11
0

LeetCode 0011 - Container With Most Water

Given n non-negative integers a1, a2, …, an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line...

2021-08-11
0

wc命令 – 统计文件的字节数、字数、行数

wc命令统计指定文件中的字节数、字数、行数,并将统计结果显示输出。利用wc指令我们可以计算文件的Byte数、字数或是列数,若不指定文件名称,或是所给予的文件名为“-”,则wc指令会从标准输入设备读取数据。wc同时也给出所...

2021-08-10
0

Jetson NANO 2GB:Utils 的 videoSource 工具

前两篇已经用 10 行 Python 代码展现了 Hello AI World 强大而且简便的物件检测识别能力,虽然大部分的人都将目光集中在了深度学习的三大推理识别(图像分类、物件检测、语义分割),但是在整个项目中,其实还有两个非常重要的...

2021-07-12
0

[1003]pandas deprecated warning to_dict()

来源:https://stackoverflow.com/questions/64695541/pandas-deprecated-warning-to-dict

2021-06-24
0

Matlab 使用Hough霍夫变换进行直线检测+寻找最长直线

先使用上文介绍的Prewitt算子将输入的图像边缘化处理,再使用霍夫变换检测直线。 其中使用到了matlab的hough,houghpeaks,houghlines等函数.

2021-06-11
0