自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(16)
  • 资源 (284)
  • 收藏
  • 关注

转载 Classical Maths Books Intro

Graduate Texts in Mathematics (GTM) 系列丛书是 Springer-Verlag出版社出版的数学方向的一系列研究生教科书。作者都是该领域的专家,每本书都从基础讲起,易于入门。这套丛书虽然经过多次重印和修订,但大多数已经绝版,即使是Springer的官方网站也只有三十本左右的电子书,而且售价不菲。1 Introduction to Axiomatic Set

2015-03-31 12:20:29 8809 1

转载 Machine Learning Classical Books Intro - 02

http://blog.sciencenet.cn/blog-655584-762840.html机器学习经典书籍小结博客第一篇文章[1]是转载的,也算是开始写博客不经意的表露了自己对机器学习的兴趣吧!那篇文章总结了机器学习的一些经典算法的论文与数学基础理论的一些书籍,对于开始学习机器学习的话恐怕太过深入,正好最近在买书,看了很多经典书籍的总结与评论,我再拾人牙慧,稍稍总结

2015-03-31 10:49:31 587

转载 Machine Learning Classical Books Intro

http://suanfazu.com/t/ji-qi-xue-xi-jing-dian-shu-ji/15前面有一篇机器学习经典论文/survey合集。本文总结了机器学习的经典书籍,包括数学基础和算法理论的书籍。本文会保持更新,欢迎推荐。入门书单《数学之美》 PDF68作者吴军大家都很熟悉。以极为通俗的语言讲述了数学在机器学习和自然语言处理等领域的应用。

2015-03-31 10:39:07 667

转载 很牛的语文老师,很牛的分享!

很牛的语文老师,很牛的分享!导读:我小时写作文,总是写不出,每次写完了一数,字数不够,就凑字数,在后面加上“啊,我今天上学了,真高兴啊!”,数数还不够,就继续凑“我从小到大从来没这么高兴过,上学是一件多高兴的事啊!”反正写来写去就是为了凑。看到这位语文老师的总结,就感叹:有了这十条,爸妈再也不用担心我的作文啦!一、写外貌不用“有”作文如何写外貌?孩子的作

2015-03-30 17:57:57 771 1

转载 OpenCV Intro - Back Projection

opencv中计算Back Projection的函数为calcBackProject,mixChannels是用来从输入中拷贝某通道到输出中特定的通道。还是以例子说明(1)例如灰度图像如下Image=  0    1    2    3  4    5    6    7  8    9   10   11  8    9   14   15(2)该灰

2015-03-27 15:06:08 516

转载 FFMPEG Intro - AvCodecContext time_base Set

static inline int decode_vui_parameters(H264Context *h, SPS *sps){    int aspect_ratio_info_present_flag;    unsigned int aspect_ratio_idc;    aspect_ratio_info_present_flag = get_bits1(&h->gb

2015-03-19 12:51:15 1230

转载 Machine Learning

比较全面的收集了机器学习的介绍文章,从感知机、神经网络、决策树、SVM、Adaboost到随机森林、Deep Learning。《机器学习经典论文/survey合集》介绍:看题目你已经知道了是什么内容,没错。里面有很多经典的机器学习论文值得仔细与反复的阅读。《Brief History of Machine Learning》2介绍:这是一篇介绍机器学习历史的文章,

2015-03-17 15:41:21 716

转载 FFMPEG MPEG-TS Intro - Relevant field of Packet

static void new_pes_packet(PESContext *pes, AVPacket *pkt){    av_init_packet(pkt);    pkt->buf  = pes->buffer;    pkt->data = pes->buffer->data;    pkt->size = pes->data_index;    if (pes

2015-03-16 17:17:44 1143

转载 Matlab Intro - Image Filter Sobel

Note: It seems that it's not valid against jpg image.I=imread('d:\Pict\tiff\spine.tif');subplot(2, 2, 1); imshow(A);title('Original Image');h = fspecial('sobel');A = imfilter(I, h);subpl

2015-03-13 18:22:08 568

转载 Matlab Intro - Image Structure

A=imread('d:\Pict\tiff\spine.tif');se = strel('square', 5);B=imerode(A, se);C=imdilate(A, se);figure(1), imshow(B), title('Erode');figure(2), imshow(C), title('Dilate');

2015-03-13 17:59:56 397

转载 Matlab Intro - Image Media Filter

Notes: The image format can't be jpg...I=imread('d:\Pict\tiff\spine.tif');J=imnoise(I, 'salt & pepper', 0.02);figure(1), imshow(I);figure(2), imshow(J);K=medfilt2(J);figure(3), ims

2015-03-13 17:52:52 422

转载 Matlab Intro - Image Filter

I=imread('d:\t1.jpg');J=imnoise(I, 'salt & pepper', 0.02);figure(1), imshow(I);figure(2), imshow(J);h=fspecial('gaussian', [3 3], 0.5);L=imfilter(J, h);figure(3), imshow(L);k=[1 1 1;1

2015-03-13 16:12:46 592

转载 Matlab Intro - FFT

A = [ 0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0];figure(1), imshow(A);figure(2), mesh(A);B = f

2015-03-13 15:59:19 450

转载 Matlab Intro - Image Processing

A='d:\t1.jpg';B=imread(A, 'jpg');C=rgb2gray(B);imhist(C)imhist(C, 256)imhist(C)D=imadjust(C, [0 1], [0 1]);imshow(D);E=histeq(C);imshow(E);F=graythresh(C);G=im2bw(C,F);imshow(G

2015-03-13 15:54:55 581

转载 Matlab Intro - Convolution

A = [ 0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 1 1 0 0 0;0 0 0 0 0 0 0 0;0 0 0 0 0 0 0 0];k=[1/9 1/9 1/9;1/9 1/9 1/9;1/9 1/9 1/9];

2015-03-13 15:52:26 459

转载 CMake Intro - CMAKE_INSTALL_PREFIX

There are two ways to use this variable:passing it as a command line argument just like Job mentioned: cmake -DCMAKE_INSTALL_PREFIX= ..assigning value to it in CMakeLists.txt:SET(CMAKE_I

2015-03-10 10:24:13 1403

Heterogeneous Computing with OpenCL

Heterogeneous Computing with OpenCL, english, pdf document.

2013-09-25

Network Programming for Microsoft Windows, 2nd Edition

Network Programming for Microsoft Windows, 2nd Edition, English. chm document

2013-09-22

Windows via CC++ 5th edition

Windows via CC++ 5th edition, english. chm document

2013-09-22

H264_And_MPEG4_Video_Compression_Video_Coding_For_Next_Generation_Multimedia

H264 And MPEG4 Video Compression Video Coding For Next Generation Multimedia pdf document

2013-08-23

Discrete-Time Signal Processing 3rd edition (oppenheim)

Discrete-Time Signal Processing 3rd edition (oppenheim) pdf document, about 70M size.

2013-07-03

H264Visa-1.15 cracked version

H264 codec stream analyse softwore version 1.15 cracked

2013-07-01

source code of many av codecs

a source code tarball of all kinds of audio/video encode/decode for convenient download, including aacplus, fdk-aac, amrnb, amrwb, ogg, vorbis, xvidcore, vpx, bluray etc.

2013-05-10

mpeg4ip source code

mpeg4ip can be used to generate track hint for mp4 file, this is a must for Darwin Streaming Server. mpeg4ip source code and SDL source code for convenient download. The SDL is a must for Configure and compile mpeg4ip. Additionally, The libtool is also a must, but it can be install by apt-get install libtool on ubuntu. For pass the compiling, you need process the compiling error manually when compiling mpeg4ip.

2013-05-08

hevc-h265 draft specification

latest HEVC (H265) draft specification pdf document.

2013-04-25

hevc-h265-hm10

HEVC (H265) test model source code 10 for convenient download

2013-04-25

HEVC test model source code 1.0

HEVC (h265) test model source code 1.0 for convenient download.

2013-04-24

Multiple View Geometry in Computer Vision

Multiple View Geometry in Computer Vision (Richard Hartley 2nd Edition) clear pdf document

2013-03-31

Image Processing, Analysis, and Machine Vision

Image Processing, Analysis, and Machine Vision (Sonka 3rd Edition 2007) clear pdf document

2013-03-31

Computer Vision-A Modern Approach

Computer Vision-A Modern Approach (D.A Forsyth) original edition clear pdf document

2013-03-31

Computer Vision Algorithms and Applications

Computer Vision Algorithms and Applications (Richard Szeliski 09-2010) original version clear pdf document

2013-03-31

Mathematics for 3D Game Programming and Computer Graphics (Third Edition)

Mathematics for 3D Game Programming and Computer Graphics (Third Edition) pdf document by Eric Lengyel

2013-03-25

opengl 4.3 specification core with changes

opengl 4.3 specification core with changes (2012-08-06) pdf document

2013-03-21

OpenGL 4.0 Sharding Language Cookbook

OpenGL 4.0 Sharding Language Cookbook pdf document

2013-03-21

OpenGL Shading Language 3rd Edition (Jul 2009)

OpenGL Shading Language 3rd Edition (Jul 2009) pdf document

2013-03-21

Programming Massively Parallel Processors - A Hands on Approach

one of classical cuda tutorials recommended by NVIDIA

2013-03-16

The Scientist and Engineer's and Guide to Digital Signal Processing.pdf

Digital Signal Processing is one of the most powerful technologies that will shape science and engineering in the twenty-first century. Revolutionary changes have already been made in a broad range of fields: communications, medical imaging, radar & sonar, high fidelity music reproduction, and oil prospecting, to name just a few. Each of these areas has developed a deep DSP technology, with its own algorithms, mathematics, and specialized techniques. This combination of breath and depth makes it impossible for any one individual to master all of the DSP technology that has been developed. DSP education involves two tasks: learning general concepts that apply to the field as a whole, and learning specialized techniques for your particular area of interest. This chapter starts our journey into the world of Digital Signal Processing by describing the dramatic effect that DSP has made in several diverse fields.

2019-06-05

Machine Learning - The Art and Science of Algorithms that Make Sense of Data

Machine Learning: Making Sense of Data - Peter Flach (University of Bristol)

2015-03-16

Voice over IP Fundamentals

This book is designed to provide information about Voice over IP. Every effort has been made to make this book as complete and as accurate as possible, but no warranty or fitness is implied.

2014-10-22

ISO-IEC-14496-1-2-3

ISO the International Organization for Standardization and IEC the International Electrotechnical Commission form the specialized system for worldwide standardization National bodies that are members of ISO or IEC participate in the development of International Standards through technical committees established by the respective organization to deal with particular fields of technical activity ISO and IEC technical committees collaborate in fields of mutual interest Other international organizations governmental and non governmental in liaison with ISO and IEC also take part in the work In the field of information technology ISO and IEC have established a joint technical committee ISO IEC JTC 1 ">ISO the International Organization for Standardization and IEC the International Electrotechnical Commission form the specialized system for worldwide standardization National bodies that are members of ISO or IEC participate in the development of International Standards through technical commi [更多]

2014-08-29

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.003

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第三部分。

2014-07-04

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.002

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第二部分。

2014-07-04

嵌入式系统Linux内核开发实战指南 ARM平台 王洪辉.7z.001

王洪辉 潜心力作-嵌入式Linux开发 ARM 平台。pdf 文档, 被分割成三部分压缩。这是第一部分。

2014-07-04

A First Course on Wavelets

Eugenio Hernandez graduated from the Universidad Complutense de Madrid in 1977 and obtained his Ph.D. degree from Washington University in St. Louis in 1981. He has been a member of the faculty of the Universidad Autonoma de Madrid since 1982 and is now Professor of Mathematics. During the academic year 1987-88 Dr. Hernandez was a Fulbright Fellow and a member of the Mathematical Sciences Research Institute in Berkeley, California. He was a visiting professor at Washington University in St. Louis in 1994-95. His research interests lie in the areas of the theory of interpolation of operators, weighted inequalities, and most recently, in the theory of wavelets. Guido Weiss obtained his undergraduate and graduate degrees from the University of Chicago, receiving his Ph.D. degree in 1956. He served on the faculty at DePaul University from 1955 to 1960, and joined the faculty of Washington University in 1960 where he is now the Elinor Anheuser Professor of Mathematics. During the past 35 years he has had leaves of absence that have allowed him to be visiting professor in several different institutions: the Sorbonne, the University of Geneva, the University of Paris in Orsay, the Mathematical Sciences Research Institute in Berkeley, California (in each case for an academic year). He also was visiting professor during semester academic leave at the Universidad de Buenos Aires, Peking University, Beijing Normal University, and the Universidad Autonoma de Madrid. His research involves a broad area of mathematical analysis, particularly harmonic analysis. Some of his work, especially his contributions to the atomic and molecular characterizations of certain function spaces (particularly the Hardy spaces), is closely related to the theory of wavelets, a subject that has commanded his attention during the last few years. He has been awarded several honorsamong them the Chauvenet Prize and honorary degrees from Beijing Normal University, the University of Milano, and the University of Barcelona.

2014-07-02

VC-1 and H.264 video compression standards for broadband video services

The VC-1 and H.264 video compression standards for broadband video services pdf document, mpeg4 and h.264 classical english instruction book.

2014-04-13

aes encrypt source code

aes cbc encrypt and decrypt source code from openssl source code.

2014-03-18

x264 h264_find_frame_end flow diagram

x264 h264_find_frame_end state transfer diagram with visio format

2014-03-11

ffmpeg analyse document

ffmpeg analyse document, including flow diagram in visio format.

2014-03-10

Head First Design Patterns (English Edition)

Head First Design Patterns (English Edition), clear pdf document.

2013-11-21

数字图像处理第二版(冈萨雷斯)习题答案

数字图像处理第二版(冈萨雷斯)习题答案 pdf document.

2013-10-27

Android 技术内幕.系统卷

Android 技术内幕.系统卷, pdf document, 作者:杨丰盛 2011-05

2013-10-18

OpenCV 2 Computer Vision Application Programming Cookbook

OpenCV 2 Computer Vision Application Programming Cookbook, including pdf document and source code.

2013-10-18

Mastering OpenCV with Practical Computer Vision Projects (full version)

Mastering OpenCV with Practical Computer Vision Projects (full version) - by Daniel Lélis Baggio etc, pdf document.

2013-10-18

Learning OpenCV

Learning OpenCV - by Gary Bradski and Adrian Kaehler, pdf document

2013-10-18

OpenGL Programming Guide 8th Edition - 2013

OpenGL Programming Guide 8th Edition - 2013, pdf document

2013-10-14

OPENCL异构计算

OPENCL异构计算, 中文, pdf 文档。 作者:Benedict Gaster 等

2013-09-25

空空如也

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

TA关注的人

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