自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(12)
  • 资源 (18)
  • 收藏
  • 关注

原创 LeetCode-----53. Maximum Subarray(最大子集合)

Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [-2,1,-3,4,-1,2,1,-5,4],the contiguous subarray [4,-1,2,1] ha

2016-10-28 16:02:07 368

原创 LeetCode---50. Pow(x, n)(指数运算x的n次方)

Implement pow(x, n).Subscribe to see which companies asked this question//思路:主要考察越界,n为负数等问题方法一:APIpublic class Solution { public double myPow(double x, int n) { // double Mat

2016-10-25 15:20:33 444

原创 LeetCode----49. Group Anagrams(颠倒字母的组合)

Given an array of strings, group anagrams together.For example, given: ["eat", "tea", "tan", "ate", "nat", "bat"], Return:[ ["ate", "eat","tea"], ["nat","tan"], ["bat"]]Note: Al

2016-10-25 14:55:04 310

原创 LeetCode-----48. Rotate Image(二维矩阵旋转90度)

You are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?

2016-10-24 19:39:05 1638

原创 LeetCode-----46.Permutations&&47.Permutations II (全排列----回溯法)

Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2] have the following unique permutations:[ [1,1,2], [1,2,1], [2,1

2016-10-22 15:20:21 416

原创 LeetCode--------45. Jump Game II(跳跃游戏--最短路径)

Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximum jump length at that position.Your goal i

2016-10-22 15:02:40 1183

原创 LeetCode------44. Wildcard Matching(?*匹配)

Implement wildcard pattern matching with support for '?' and '*'.'?' Matches any single character.'*' Matches any sequence of characters (including the empty sequence).The matching should cover t

2016-10-21 15:38:08 303

原创 LeetCode-------43. Multiply Strings(字符串的乘法运算)

Given two numbers represented as strings, return multiplication of the numbers as a string.Note:The numbers can be arbitrarily large and are non-negative.Converting the input string to integ

2016-10-14 11:46:06 393

原创 LeetCode------42. Trapping Rain Water(捕获雨水量)

Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.For example, Given [0,1,0,2,1,0,1,3,2,1,2,1]

2016-10-13 13:25:38 1299

原创 LeetCode----41. First Missing Positive

Given an unsorted integer array, find the first missing positive integer.For example,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your algorithm should run in O(n) time and uses constant

2016-10-10 17:39:25 194

原创 LeetCde----40. Combination Sum II

Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.Each number in C may only be used once in the combinati

2016-10-10 11:24:20 292

原创 LeetCode--------39. Combination Sum(组合和)

Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The same repeated number may be chosen from C unlimited numb

2016-10-06 22:26:11 235

Linux系统下GDB调试指南.docx

Linux系统下GDB调试指南.docx

2021-03-22

点云格式转换 pcd转ply,pcd转las

pcl 使用1.8.1;las采用Laslib即LasTool;windwos和linux均可,其中Laslib 需要采用源码编译

2020-12-11

裸码流分析工具.rar

h264裸码流解析工具

2020-07-02

h264h265_export.zip

wireshark 直接可以导出来264,265格式的插件包,推荐wireshark版本3.2.4

2020-07-02

rtsp_to_udp.zip

rtsp 视频流tcp转换成udp,然后就可以解析流格式

2020-07-02

PDF编辑工具.rar

实测好用的pdf编辑工具,见附件。可以编辑文字,图片等信息。亲测好用.

2020-06-19

python解析TLV格式的脚本

TLV解析工具 使用命令 python getTlVData.py pcap文件路径; 可以直接解析wireshark 抓包的工具

2019-12-21

build_ffmpeg_win2.0_new.sh

ffmpeg windows 下编译的方法及使用说明,经过测试可以使用

2019-10-21

opencv c++相机标定程序 包含标定图像和标定结果

灰度图和彩色图像均可以标定,已测试通过,标定结果会保存成文档格式,稍微模糊的图检测效果也很好

2018-01-05

Halcon 实现对datamatrix工业二维码识别(包含c++程序)

用halcon实现对datamatrix工业二维码的检测,同时导录成c++代码(包含测试图像+halcon代码+c++代码)

2017-12-26

大恒水晶相机Opencv打开 c++

大恒水晶相机用opencv打开程序,可以实现视频的实时查看

2017-12-26

pcl 1.7.2(vtk6.2)+vs2013_x64 +test.pcd点云

pcl配置文件

2017-07-25

Kinect获取深度图,鼠标点击获取该点三维坐标并保存txt

代码保存在txt文件里,需要自己配置路径,已试过可以用

2017-05-26

matlab离散点数据拟合三维模型

matlab读取txt一系列离散点,然后利用scatter3,mesh拟合出三维模型

2017-05-25

c++调用matlab代码

vs2013平台下实现c++调用matlab代码,具有通用性

2017-05-25

win10+x64+VS2013+Pcl 1.7.2 +opencv安装配置props文件

win10的 x64系统下配置PCL点云库,opencv等

2017-03-15

相机标定棋盘格图片下载(可直接打印使用)

opencv:26mm matlab:15mm;(包含两张图片);可直接打印使用

2016-11-23

Java程序设计入门教程

Java程序设计最基础的入门教程,对于小白的你可以第一步简单了解Java开发环境及其应用

2015-09-05

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除