自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

lin

  • 博客(6)
  • 资源 (19)
  • 收藏
  • 关注

原创 2019年校招:万得信息AI算法工程师

AI算法工程师分为笔试与面试:笔试题目:请设计一个热门股票榜单,使其能够实时的反映当前股票市场对各支股票的关注度。可使用的数据:包括但是不限于用户访问股票的日志行为记录等。请描述:如何选取数据、数据预处理、构造特征、选择算法,以及如何对效果进行评估?答:面试涉及的主要问题:今日头条的热搜榜单是根据什么特征来排序的,或者说你认为他是如何来排序热搜的?答:先挖个坑,改日再给...

2018-11-14 22:39:50 2335

原创 2019年校招:漫道金服数据模型工程师校招笔试

数据模型工程师笔试题目一、基础数据能力考察1、互联网和传统行业数仓的差异?(选做)2、雪花模型与星型模型的差别?(选做)3、有如下表:TABLE_USER,表的内容包含:MEMBER_ID、ID_CARD、ID_CARD_NAME。(1)取ID_CARD,ID_CARD_NAME重复值。(2)取top5与后top5。4、按要求写SQL:表A如下, USER_ID(ID,...

2018-11-11 10:32:28 883 2

原创 2019年校招:纵目科技算法笔试题

参考一家自动驾驶AI公司—纵目科技软件、算法笔试题一家自动驾驶AI公司—纵目科技软件、算法笔试题—猫鼠问题当时笔试感觉良好,但是遗憾没有接到面试通知,把笔试题目写出来给大家参考参考。试卷分为两部分,第一部分为必做题,第二部分选做两题Settion 1: SW Program Questions1、Implement the following macro to clear a 3...

2018-11-10 11:06:11 3153

原创 Leecode 7_ReverseInteger

题目: 给定一个 32 位有符号整数,将整数中的数字进行反转。示例输入: 123输出: 321输入: -123输出: -321输入: 120输出: 21注意:假设我们的环境只能存储 32 位有符号整数,其数值范围是 [−231, 231 − 1]。根据这个假设,如果反转后的整数溢出,则返回 0。思路:原数对10取模,然后除以10,直到为0。取得各位数,然后乘以10...

2018-11-07 20:38:41 205

原创 最长子串

题目:有一些由英文组成的大小写敏感的字符串,找到一个最长的子串,使得对于已经给出的字符串中任意一个串y,x或者是y的子串,或者x中的字符串反序之后得到的新串是y的子串。输入:第一行表示测试的组数t第二行表示字符串的个数n接下来n行表示字符串样例:23ABCDBCDFFBRCD2roseorchid输出22代码:#define _CRT_SECURE...

2018-11-05 13:27:14 2612

原创 求最大公约数

求两个数的最大公约数输入两个数,输出最大公约数思路:利用初等数学GCD(a,b)=GCD(a,b mod a) 具体讲:a,b的最大公约数等于a, b%a的最大公约数,b%a ,a的最大公约数等于b%a, a%(b%a)最大公约数。直到某次求模等于0,最大公约数就是较小的那个数。采用循环求模的方式。int GCD(int a, int b) { int r; r = a % b;...

2018-11-04 20:12:48 327

dipum_toolbox

dipum_toolbox。数字图像处理的Matlab实现代码,工具箱,.m文件

2018-03-04

dipum_toolbox_2.0.2

冈萨雷斯一书的程序集,及dipum工具箱代码,数字图像处理的Matlab实现的,.p文件

2018-03-04

Springer 计算机论文模板

Springer 论文投递的word2003模板,具体使用方法在压缩包里面

2018-02-26

Python计算机视觉编程(pdf+azw3)

Python计算机视觉编程,包内含PDF版本和azw3版本,适合不同人的需求

2017-11-14

OpenCV with Python Blueprints

OpenCV with Python Blueprints,英文版电子书。适合学习opencv python

2017-11-14

OpenCV With Python by Example

Build real-world computer vision applications and develop cool demos using OpenCV for Python, About This Book, Learn how to apply complex visual effects to images using geometric transformations and image filtersExtract features from an image and use them to develop advanced applicationsBuild algorithms to help you understand the image content and perform visual searches, Who This Book Is For, This book is intended for Python developers who are new to OpenCV and want to develop computer vision applications with OpenCV-Python. This book is also useful for generic software developers who want to deploy computer vision applications on the cloud. It would be helpful to have some familiarity with basic mathematical concepts such as vectors, matrices, and so on., What You Will Learn, Apply geometric transformations to images, perform image filtering, and convert an image into a cartoon-like imageDetect and track various body parts such as the face, nose, eyes, ears, and mouthStitch multiple images of a scene together to create a panoramic imageMake an object disappear from an imageIdentify different shapes, segment an image, and track an object in a live videoRecognize an object in an image and build a visual search engineReconstruct a 3D map from imagesBuild an augmented reality application, In Detail, Computer vision is found everywhere in modern technology. OpenCV for Python enables us to run computer vision algorithms in real time. With the advent of powerful machines, we are getting more processing power to work with. Using this technology, we can seamlessly integrate our computer vision applications into the cloud. Web developers can develop complex applications without having to reinvent the wheel., This book will walk you through all the building blocks needed to build amazing computer vision applications with ease. We start off with applying geometric transformations to images. We then discuss affine and projective transformations and see how we can use them to apply cool geometric effects to photos. We will then cover techniques used for object recognition, 3D reconstruction, stereo imaging, and other computer vision applications., This book will also provide clear examples written in Python to build OpenCV applications. The book starts off with simple beginner's level tasks such as basic processing and handling images, image mapping, and detecting images. It also covers popular OpenCV libraries with the help of examples., The book is a practical tutorial that covers various examples at different levels, teaching you about the different functions of OpenCV and their actual implementation., Style and approach, This is a conversational-style book filled with hands-on examples that are really easy to understand. Each topic is explained very clearly and is followed by a programmatic implementation so that the concept is solidified. Each topic contributes to something bigger in the following chapters, which helps you understand how to piece things together to build something big and complex.

2017-11-14

Tensorflow 实战Google深度学习框架

Tensorflow 实战Google深度学习框架,文档为扫描版,仅供学习,请购买正版

2017-11-14

图片中提取红色区域

一个简单的提取图片里面红色区域的实例代码,程序为puthon2.X +opencv 2.X.

2017-11-14

MNIST测试程序代码

几个手写数字程序实现的程序,注意,本文件需要用jupyter notebook 打开,用python 写的,包含4个程序:无隐层实现、单隐层、双隐层、卷积实现。

2017-11-14

python核心编程(第二、三版)

python核心编程(第二、三版),分别对应于python2.X和python3.X。可以对照起来看。

2017-11-14

机器学习实战,中文+英文pdf+code

机器学习实战,中文+英文pdf+code,一次性下载,中英文对照看。

2017-11-10

Python数据分析与挖掘实战(pdf+code)

Python数据分析与挖掘实战,压缩包里面包含文档pdf与文档配套的代码

2017-11-10

OpenCV 3计算机视觉:Python语言实现

OpenCV 3计算机视觉:Python语言实现,代码+pdf文档,适合于计算机视觉研究者

2017-11-09

Python数据分析基础教程:NumPy学习指南(第2版)代码+书籍pdf

Python数据分析基础教程:NumPy学习指南(第2版),包含文档pdf和文内的配套代码,后续更新可以在github上获得

2017-11-09

莫烦python,tensorflow

本文的内容为视频莫烦python的配套代码,视频可以在优酷或者youtube上观看,视屏是短视频,每个视频10分钟以内,很好的初学者材料。还有tensorflow示例

2017-11-09

空空如也

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

TA关注的人

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