自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(33)
  • 资源 (13)
  • 收藏
  • 关注

原创 “绿盟杯”决赛第二阶段(Python题解)

(一)生日蜡烛挑战任务参加“绿盟杯”决赛的小明同学从18岁之后的某一年开始每年都会在他家的别墅举办一次生日派对,在每一次办生日派对的时候都会有一个吹蜡烛的环节,小明都会吹灭与年龄相同数量的生日蜡烛。你需要编写一个程序,根据总共吹灭的蜡烛数量,来判断小明同学现在多少岁了。编程要求补全右侧代码区中的birthdayCandle(num)函数,实现通过吹灭蜡烛的根数来判断小明的最小年...

2018-10-26 11:09:35 1478 1

原创 绿盟杯决赛第一阶段 python 题解

(一)简单排序挑战任务本关挑战任务是对一个数组进行排序,排序需要遵守一些规则,比如给出一组数据5,1,4,2,3,我们从第二个数字开始,这个数字是1,我们的任务是看看1有没有在正确的位置,我们的做法是和这个数字左边的数字来比,因此我们比较1和5,1比5小,所以交换1和5,原来的排列就变成了1,5,4,2,3。接下来我们看第三个数字有没有在正确的位置。这个数字是4,它的左边数字是5,4比...

2018-10-25 15:37:05 1772

翻译 “绿盟杯”模拟赛第二阶段(Python题解) 集装箱货运问题

集装箱货运问题任务概述集装箱货运是国际货物运输的主要方式之一,在进行码头运货时,会先将不同类型的物品都装入集装箱,然后再统一运送。集装箱通常有统一的规格。本关挑战是需要你设计算法,要求将码头已有的多种类型的货物使用给定规格的集装箱进行组合装箱,并使得集装箱的载重和空间利用率尽可能的高。数据说明假设货运码头仅有一种规格的集装箱,其体积是56立方米,最多能放入重量为128千克的物品...

2018-10-23 22:26:47 2915 2

原创 “绿盟杯”模拟赛第一阶段(Python版题解)

(一)简单排序挑战任务本次挑战,你需要根据输入的排序类型,实现对输入数组的排序。其中,排序类型包括asc(升序)或desc(降序)。编程要求补充完善右侧代码区中的sortArray(self,arr,sort)函数,实现对给定数组的排序。其中,函数各参数含义如下:arr:输入数组 sort:排序类型测试说明样例1输入:23,12,2,32,11,125asc输出...

2018-10-19 16:36:17 1954 2

原创 全国高校计算大赛 模拟赛 第三阶段 python版 题解

 标签推荐#这回只有IDE下的,好气import pandas as pdclass Task: def func(self): tf_train_list, tf_test_list = loadSimpDat() initSet = createInitSet(tf_train_list) myFPtree, myHeader...

2018-10-11 22:41:20 1168 2

原创 全国高校计算大赛 模拟赛 第二阶段 python版 题解

(一)气温预测挑战任务根据每日气温数组,请重新生成一个数组,新数组对应位置的是你需要再等待多久温度才会升高的天数。如果之后都不会升高,请用0来代替。例如:给定一个数组 temps = {34,35,33,25,44,19,18,17} 新生成的数组应该为[1, 3, 2, 1, 0, 0, 0, 0]。temps数组第一天温度是34℃,第二天是35℃,所以对应新生成数组位置的数据应...

2018-10-09 10:38:56 910 2

原创 全国高校绿色计算大赛 模拟赛 第一阶段 python版题解

(一)求和挑战任务这次“绿盟杯”大赛,小明作为参赛选手在练习的时候遇到一个问题,他要对一个范围的两个数进行数位的累加,例如有两个数 15,19则 他们的数位和应该为:1+5+1+6+1+7+1+8+1+9,结果为40。你来帮他解决这个问题吧。编程要求补充完善右侧代码区中的getSum(self,num1,num2)函数,实现对两个数num1和num2的数位和相加,最后返回计算的...

2018-10-08 22:23:06 1245

原创 Ubuntu下clion编写OpenCV程序的cmakelist

Ubuntu下clion编写OpenCV程序的cmakelist单个源文件的cmakelist.txt对于简单的项目,只需要写几行代码就可以了。例如,现在我们的项目中只有一个源文件 main.cpp,该程序的用途是读取一幅图像并显示。/*函数功能:读取图片并显示*/#include <stdio.h>#include <opencv2/opencv.hpp&...

2018-09-25 11:11:52 1764

原创 离线安装Ubuntu16.04 NVIDIA1060显卡驱动 CUDA9.0 CUDNN7.0 anaconda TensorFlow-GPU pycharm opencv-python opencv

离线安装Ubuntu16.04 NVIDIA1060显卡驱动 CUDA9.0 CUDNN7.0 anaconda TensorFlow-GPU pycharm opencv-python opencv-contrib-python pytorch clion qt5 OpenCV3.3.1教程注:用word编辑的,文章太长实在是不想再编辑了,编号没对上,上传了教程的word版本,每个步骤都附了...

2018-09-25 10:40:58 867

原创 深度学习方法在道路提取、图像检索上的几篇文章阅读笔记

关于全卷积神经网络的upsampling还没有搞清楚,如果你有合适的资料或者好方法,欢迎评论交流!深度学习方法在道路提取上的应用1、【传统方法】A review of road extraction from remote sensing images2、【充分利用道路特征-FCN+改进的损失函数】Road Structure Refined CNN for Road Extraction in ...

2018-05-07 17:20:06 6714 2

原创 李宏毅Deep Learning 学习笔记

视频介绍:对于各网络的基本框架讲的比较有意思,123678比较详细一些1、2、DL基本框架,全连接网络和神经网络的基本介绍3、计算图和反向传播4、语言模型的练习5、空间6、highway network & grid LSTM7、recursive structure8、GAN视频百度云链接:https://pan.baidu.com/s/1pY-F_O1ZAaGhpNLx28hRow 密...

2018-05-07 17:16:52 1064

原创 《TensorFlow:实战google深度学习框架》ch3-6学习笔记

chapter3:TensorFlow入门date:2018.04.15下午1、创建会话的三种方式E:\Workspace\PycharmProjects\test\ch3_1_2_tf_grapha. sess = tf.Session() sess.run(……) sess.close()b. with tf.Session() as sess: sess.run(……)c. sess = ...

2018-05-07 16:40:49 378

原创 LeetCode-83. Remove Duplicates from Sorted List

题目:Given a sorted linked list, delete all duplicates such that each element appear only once.For example,Given 1->1->2, return 1->2.Given 1->1->2->3->3, return 1->2->3.solut...

2018-03-28 11:48:02 114

原创 LeetCode-70 climbing stairs(方法大总结)

https://leetcode.com/problems/climbing-stairs/description/题目You are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways ...

2018-03-26 23:16:11 427

原创 LeetCode-69. Sqrt(x)

题目:Implement int sqrt(int x).Compute and return the square root of x.x is guaranteed to be a non-negative integer.Example 1:Input: 4Output: 2Example 2:Input: 8Output: 2Explanation: The square root...

2018-03-26 18:53:35 111

原创 LeetCode-67. Add Binary

题目:Given two binary strings, return their sum (also a binary string).For example,a = "11"b = "1"Return "100".不会写的人只能偷懒,我庸俗~~~solution:class Solution: def addBinary(self, a, b): """ ...

2018-03-26 18:36:01 120

原创 LeetCode-66. Plus One

题目:Given a non-negative integer represented as a non-empty array of digits, plus one to the integer.You may assume the integer do not contain any leading zero, except the number 0 itself.The digits ar...

2018-03-26 18:06:04 98

原创 LeetCode-58. Length of Last Word

评论区最多的就是it's no fun at all!哈哈哈题目:Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word does not exist, r...

2018-03-26 16:36:39 118

转载 LeetCode-53. Maximum Subarray

题目: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 subarra...

2018-03-26 16:17:35 96

原创 LeetCode-38 count and say

题目:The count-and-say sequence is the sequence of integers with the first five terms as following:1. 12. 113. 214. 12115. 1112211 is read off as "one 1" or 11.11 is read off as...

2018-03-25 21:51:16 152

原创 LeetCode-35. Search Insert Position

题目:Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.You may assume no duplicates in the array.E...

2018-03-25 11:19:13 133

原创 LeetCode-28. Implement strStr()

题目:Implement strStr().Return the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.Example 1:Input: haystack = "hello", needle = "ll"Output: 2Example 2:Inp...

2018-03-25 10:18:59 146

原创 LeetCode-27. Remove Element

题目:Given an array and a value, remove all instances of that value in-place and return the new length.Do not allocate extra space for another array, you must do this by modifying the input array in-pla...

2018-03-24 12:44:08 168

原创 LeetCode-26. Remove Duplicates from Sorted Array

题目:Given a sorted array, remove the duplicates in-place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this by modifying t...

2018-03-24 12:22:55 74

原创 LeetCode-21. Merge Two Sorted Lists

题目:Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.Example:Input: 1->2->4, 1->3->4Output: 1-&g...

2018-03-24 11:40:16 114

原创 LeetCode-20 valid parenthesis

题目:括号匹配问题Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the correct order, "()" and "()[]{}" are all v...

2018-03-21 11:48:23 177

原创 LeetCode-14 longest common prefix

题目:Write a function to find the longest common prefix string amongst an array of strings.解题思路:恩新手复习下zip,set好了……class Solution: def longestCommonPrefix(self, strs): """ :type strs: ...

2018-03-21 10:57:17 118

原创 LeetCode-13罗马数字转整数

"""罗马数字只有7个字母组成,每个字母代码的字如下:ROMAN = {'M':1000,'D':500,'C':100,'L':50,'X':10,'V':5,'I':1}题目hint1中给出,注意格式即可没有明确给出罗马数字与阿拉伯数字的转换关系,已有总结如下:四个规则(http://blog.csdn.net/net_wolf_007/article/details/51770112)相...

2018-03-21 09:58:48 567

原创 LeetCode-9回文数

   题目:Determine whether an integer is a palindrome. Do this without extra space.Some hints:Could negative integers be palindromes? (ie, -1)If you are thinking of converting the integer to string, note...

2018-03-20 22:05:22 111

原创 leetcode-7颠倒整数

给定一个范围为 32 位 int 的整数,将其颠倒。例 1:输入: 123输出: 321 例 2:输入: -123输出: -321 例 3:输入: 120输出: 21 注意:假设我们的环境只能处理 32 位 int 范围内的整数。根据这个假设,如果颠倒后的结果超过这个范围,则返回 0。class Solution:    def reverse(self, x):        ""...

2018-03-20 10:50:03 286

原创 LeetCode-1 两数之和

给定一个整数数列,找出其中和为特定值的那两个数。你可以假设每个输入都只会有一种答案,同样的元素不能被重用。示例:给定 nums = [2, 7, 11, 15], target = 9因为 nums[0] + nums[1] = 2 + 7 = 9所以返回 [0, 1]step 1:class Solution(object):    def twoSum(self, nums, targe...

2018-03-19 21:14:57 609

原创 [实验]无失真信源压缩编码

实验一 无失真信源压缩编码此文系后续整理,懒得copy,对应的方法可以根据需要可以直接下载代码,附件:https://download.csdn.net/download/weixin_40744915/10296130https://download.csdn.net/download/weixin_40744915/10296133https://download.csdn.net/downl...

2018-03-19 20:09:04 3144 1

原创 窃听信道模型中的保密通信性能研究

窃听信道模型中的保密通信性能研究此文系后续整理,各种图片公式懒得copy,需要可以直接下载作者相关作业、文章,附件:https://download.csdn.net/download/weixin_40744915/10296110https://download.csdn.net/download/weixin_40744915/10296115https://download.csdn.ne...

2018-03-19 19:44:36 6567

离线安装Ubuntu16.04 NVIDIA1060驱动 CUDA9.0 CUDNN7.0 anaconda TensorFlow-GPU

离线安装Ubuntu16.04 NVIDIA1060驱动 CUDA9.0 CUDNN7.0 anaconda TensorFlow-GPU pycharm opencv-python opencv-contrib-python pytorch clion qt5

2018-09-16

Exploiting Deep Features for Remote Sensing Image Retrieval

深度学习方法在图像检索上的应用 Exploiting Deep Features for Remote Sensing Image Retrieval 图像检索——从视觉特征、相似性度量、相关性反馈三个核心方面提出RS图像特征提取的基准(武大)

2018-09-16

选择性搜索region proposal+CNN classification+NMS_USB-BBR优化边界框冗余问题

https://blog.csdn.net/weixin_40744915/article/details/80228611 选择性搜索region proposal+CNN classification+NMS_USB-BBR优化边界框冗余问题

2018-09-16

Computer Vision Models,Learning and Inference17章形状模型翻译

Computer Vision Models,Learning and Inference17章形状模型翻译。形状及表示,snake模型,形状模板,统计形状模型,子空间形状模型,三维形状模型,形状和外观的统计模型,非高斯统计形状模型,铰接式模型,应用

2018-04-17

Computer Vision Models,Learning and Inference13章翻译

Computer Vision Models,Learning and Inference13章图像预 处理与特征提取翻译。逐像素变换(白化,直方图均衡化,滤波,二值),边缘、角点和兴趣点(canny,harris,SIFT)描述子(SIFT,方向梯度直方图,词袋,形状内容)降维(单数值近似,主成分分析,二元主成分分析,K均值)

2018-04-17

出租车异常轨迹检测,英文文献阅读带注释

在我阅读可能不断更改的课题方向的各种论文中,看了这篇论文Detecting Anomalous Trajectories and Behavior Patterns Using Hierarchical Clustering from Taxi GPS Data,关于利用出租车轨迹数据,预测其中的异常轨迹,看到比较认真详细的一篇,附带了好多注释,刚刚接触,可能有很多错误,欢迎大家在评论区批评指正!

2018-04-06

(WHU论文,带注释)深度卷积神经网络在高分辨率遥感图像的场景分类中的应用

在我阅读可能不断更改的课题方向的各种论文中,看了这篇论文Transferring Deep Convolutional Neural Networks for the Scene Classification of High-Resolution Remote Sensing Imagery.pdf ,各类算法比较的好多,认真看了这篇文章,并附上了自己的注释和标记,刚刚接触,理解不深,可能有错误之处,欢迎在评论区批评指正!

2018-04-06

文本文件 无失真压缩 信源熵 lz77

1、对文本信源,寻求最佳压缩方案,现完整的无失真压缩的编译码算法,完成对文本文件的压缩及解压。 2、构建性能分析模块,实现对信源熵的统计、压缩后的传输率(bits/symbol),以及恢复文本的完整情况进行分析。

2018-03-19

C++文本文件无失真压缩 Huffman

1、对文本信源,寻求最佳压缩方案,现完整的无失真压缩的编译码算法,完成对文本文件的压缩及解压。 2、构建性能分析模块,实现对信源熵的统计、压缩后的传输率(bits/symbol),以及恢复文本的完整情况进行分析。

2018-03-19

文本文件无失真压缩 Huffman

1、对文本信源,寻求最佳压缩方案,现完整的无失真压缩的编译码算法,完成对文本文件的压缩及解压。 2、构建性能分析模块,实现对信源熵的统计、压缩后的传输率(bits/symbol),以及恢复文本的完整情况进行分析。

2018-03-19

【实验报告】文本文件无失真压缩

1、对文本信源,寻求最佳压缩方案,现完整的无失真压缩的编译码算法,完成对文本文件的压缩及解压。 2、构建性能分析模块,实现对信源熵的统计、压缩后的传输率(bits/symbol),以及恢复文本的完整情况进行分析。

2018-03-19

Imperfect secrecy in Wiretap Channel II

信息理论与编码研究生课程论文,汇报PPT,对应的英文论文及翻译,不尽之处还有很多。主要是在阅读文献《Imperfect secrecy in Wiretap Channel II》给出

2018-03-19

【PPT】窃听信道模型中的保密通信性能研究(Imperfect secrecy in Wiretap Channel II)

信息理论与编码研究生课程论文对应的汇报PPT,不尽之处还有很多。还有同名研究报告,和翻译。主要是在阅读文献《Imperfect secrecy in Wiretap Channel II》

2018-03-19

空空如也

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

TA关注的人

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