自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 win32 opengl example - 05 (MFC)

http://www.codeproject.com/Articles/30775/TetroGL-An-OpenGL-Game-Tutorial-in-C-for-Win32-pla  TetroGL: An OpenGL Game Tutorial in C++ for Win32 platforms - Part 3By Cedric Moonen,8 Nov 2008

2013-12-30 10:46:36 2556

转载 win32 opengl example - 04 (MFC)

http://www.codeproject.com/Articles/28608/TetroGL-An-OpenGL-Game-Tutorial-in-C-for-Win32-Pla TetroGL: An OpenGL Game Tutorial in C++ for Win32 Platforms - Part 2By Cedric Moonen,30 Mar 2009

2013-12-30 10:46:17 2081

转载 win32 opengl example - 03 (MFC)

http://www.codeproject.com/Articles/27219/TetroGL-An-OpenGL-Game-Tutorial-in-C-for-Win32-Pla TetroGL: An OpenGL Game Tutorial in C++ for Win32 Platforms - Part 1By Cedric Moonen,26 Aug 2008

2013-12-30 10:45:51 1849

转载 win32 opengl example - 02

#include #include char *className = "OpenGL";char *windowName = "OpenGL Cube";int winX = 0, winY = 0;int winWidth = 300, winHeight = 300;HDC hDC;HGLRC hGLRC;HPALETTE hPalette;voidi

2013-12-30 10:45:30 676

转载 win32 opengl example - 01

/* An example of the minimal Win32 & OpenGL program.  It only works in   16 bit color modes or higher (since it doesn't create a   palette). */#include    /* must include this before GL/gl.h *

2013-12-30 10:44:34 676

转载 Difference between OnPaint and OnDraw of MFC

MFC中OnDraw与OnPaint的区别OnPaint是WM_PAINT消息的消息处理函数,在OnPaint中调用OnDraw,一般来说,用户自己的绘图代码应放在OnDraw中。OnPaint()是CWnd的类成员,负责响应WM_PAINT消息。OnDraw()是CVIEW的成员函数,没有响应消息的功能.当视图变得无效时(包括大小的改变,移动,被遮盖等等),Windows发送

2013-12-30 10:43:37 1058

转载 Win32 Series - A Sample MDI Implementation

http://www-user.tu-chemnitz.de/~heha/petzold/  A Sample MDI ImplementationThe MDIDEMO program, shown in Figure 19-2, demonstrates the basics of writing an MDI application.Figure 19-2.

2013-12-30 10:33:34 955

转载 Win32 Series - The Union of DIBs and DDBs

http://www-user.tu-chemnitz.de/~heha/petzold/  The Union of DIBs and DDBsYou can do a lot knowing the format of the DIB and by calling the two DIB-drawing  functions,SetDIBitsToDevice and

2013-12-29 09:29:29 1004

转载 Win32 Series - DIB Displaying and Printing

http://www-user.tu-chemnitz.de/~heha/petzold/ Displaying and PrintingBitmaps are for looking at. In this section, we'll begin by looking at the two functions  that Windows supports for display

2013-12-29 09:29:15 1236

转载 Win32 Series - The DIB File Format

http://www-user.tu-chemnitz.de/~heha/petzold/  The DIB File FormatInterestingly enough, the DIB format did not originate in Windows. It was first defined  in version 1.1 of OS/2, the operati

2013-12-29 09:29:05 1391

转载 Win32 Series - The GDI Bitmap Object

http://www-user.tu-chemnitz.de/~heha/petzold/ The GDI Bitmap ObjectI mentioned earlier in this chapter that Windows has supported a GDI bitmap object  since version 1.0. Because of the introdu

2013-12-29 09:28:05 2078

转载 Win32 Series - The Bit-Block Transfer

http://www-user.tu-chemnitz.de/~heha/petzold/  The Bit-Block TransferAs I mentioned earlier, you can think of the entire video display as one big bitmap.  The pixels you see on the screen ar

2013-12-29 09:27:48 898

转载 Win32 Series - Becoming a Clipboard Viewer

http://www-user.tu-chemnitz.de/~heha/petzold/  Becoming a Clipboard ViewerA program that is notified of changes in the clipboard contents is called a "clipboard  viewer." You get a clipboard

2013-12-29 09:27:39 808

转载 Win32 Series - Simple Use of the Clipboard

http://www-user.tu-chemnitz.de/~heha/petzold/  Simple Use of the ClipboardWe'll begin by looking at the code involved for transferring data to the clipboard (Cut  and Copy) and getting acces

2013-12-29 09:27:30 889

转载 Win32 Series - Beyond Simple Clipboard Use

http://www-user.tu-chemnitz.de/~heha/petzold/  Beyond Simple Clipboard UseWe've seen that transferring text from the clipboard requires four calls after the data  has been prepared:Ope

2013-12-29 09:27:15 695

转载 Win32 Series - The Common Dialog Boxes

http://www-user.tu-chemnitz.de/~heha/petzold/ The Common Dialog BoxesOne of the primary goals of Windows when it was initially released was to promote  a standardized user interface. For many

2013-12-29 09:26:58 996

转载 Win32 Series - Modeless Dialog Boxes

Modeless Dialog BoxesAt the beginning of this chapter, I explained that dialog boxes can be either "modal"  or "modeless." So far we've been looking at modal dialog boxes, the more common of  the tw

2013-12-29 09:26:29 822

转载 Win32 Series - Modal Dialog Boxes

http://www-user.tu-chemnitz.de/~heha/petzold/  Modal Dialog BoxesDialog boxes are either "modal" or "modeless." The modal dialog box is the most  common. When your program displays a modal d

2013-12-29 09:26:04 1725

转载 Win32 Series - Menus

http://www-user.tu-chemnitz.de/~heha/petzold/ MenusDo you remember the Monty Python skit about the cheese shop? Here's how it goes:  A guy comes into a cheese shop and wants a particular type

2013-12-29 09:25:43 740

转载 Win32 Series - The Listbox Class

The Listbox ClassThe final predefined child window control I'll discuss in this chapter is the list box. A list box is a collection of text strings displayed as a scrollable columnar list within a r

2013-12-29 09:25:29 1123

转载 Win32 Series - The Edit Class

http://www-user.tu-chemnitz.de/~heha/petzold/ The Edit ClassThe edit class is in some ways the simplest predefined window class and in other ways the most complex. When you create a child wind

2013-12-29 09:25:18 647

转载 Win32 Series - The Scroll Bar Class

http://www-user.tu-chemnitz.de/~heha/petzold/ The Scroll Bar ClassWhen the subject of scroll bars first came up in Chapter 4, I discussed some of the differences between "window scroll bars"

2013-12-29 09:24:58 966

转载 Win32 Series - Controls and Colors

http://www-user.tu-chemnitz.de/~heha/petzold/  Controls and ColorsAs you can see in Figure 9-2, the display of many of the buttons doesn't look quite right. The push buttons are fine, but th

2013-12-29 09:24:37 1042

转载 Win32 Series - The Button Class

http://www-user.tu-chemnitz.de/~heha/petzold/ The Button ClassWe'll begin our exploration of the button window class with a program named BTNLOOK ("button look"), which is shown in Figure 9-1.

2013-12-29 09:24:14 820

转载 Win32 Series - Child Window Controls

http://www-user.tu-chemnitz.de/~heha/petzold/  Child Window ControlsRecall from Chapter 7 the programs in the CHECKER series. These programs display a grid of rectangles. When you click the

2013-12-29 09:23:48 775

转载 Win32 Series - Using the Timer: Three Methods

http://www-user.tu-chemnitz.de/~heha/petzold/ Using the Timer: Three MethodsIf you need a timer for the entire duration of your program, you'll probably callSetTimer from the WinMain functio

2013-12-28 20:45:02 671

转载 Win32 Series - The Mouse Wheel

http://www-user.tu-chemnitz.de/~heha/petzold/ The Mouse Wheel"Build a better mousetrap and the world will beat a path to your door," my mother told me, unknowingly paraphrasing Emerson. Of cou

2013-12-28 20:44:41 600

转载 Win32 Series - Capturing the Mouse

Capturing the MouseA window procedure normally receives mouse messages only when the mouse cursor is positioned over the client or nonclient area of the window. A program might need to receive mou

2013-12-28 20:44:32 790

转载 Win32 Series - Hit-Testing in Your Programs

http://www-user.tu-chemnitz.de/~heha/petzold/ Hit-Testing in Your ProgramsEarlier I discussed how Windows Explorer responds to mouse clicks and double-clicks. Obviously, the program (or more p

2013-12-28 20:44:21 641

转载 Win32 Series - Nonclient-Area Mouse Messages

http://www-user.tu-chemnitz.de/~heha/petzold/ Nonclient-Area Mouse MessagesThe 10 mouse messages discussed so far occur when the mouse is moved or clicked within the client area of a window. I

2013-12-28 20:42:27 575

转载 Win32 Series - Client-Area Mouse Messages

http://www-user.tu-chemnitz.de/~heha/petzold/  Client-Area Mouse MessagesIn the previous chapter, you saw how Windows sends keyboard messages only to the window that has the input focus. Mou

2013-12-28 20:41:53 725

转载 Win32 Series - The Caret (Not the Cursor)

http://www-user.tu-chemnitz.de/~heha/petzold/ The Caret (Not the Cursor)When you type text into a program, generally a little underline, vertical bar, or box shows you where the next character

2013-12-28 20:41:43 898

转载 Win32 Series - Keyboard Messages and Character Sets

http://www-user.tu-chemnitz.de/~heha/petzold/  Keyboard Messages and Character SetsThe remaining sample programs in this chapter have flaws. They will not always run correctly under all vers

2013-12-28 20:41:26 971

转载 Win32 Series - Character Messages

http://www-user.tu-chemnitz.de/~heha/petzold/  Character MessagesEarlier in this chapter, I discussed the idea of translating keystroke messages into character messages by taking shift-state i

2013-12-28 20:41:17 676

转载 Win32 Series - Keystroke Messages

http://www-user.tu-chemnitz.de/~heha/petzold/  Keystroke MessagesWhen you press a key, Windows places either a WM_KEYDOWN or WM_SYSKEYDOWN message in the message queue of the window with the

2013-12-28 20:41:04 1051

转载 Win32 Series - Rectangles, Regions, and Clipping

Rectangles, Regions, and ClippingWindows includes several additional drawing functions that work with RECT (rectangle) structures and regions. A region is an area of the screen that is a combinati

2013-12-28 20:40:54 1182

转载 Win32 Series - The GDI Mapping Mode

http://www-user.tu-chemnitz.de/~heha/petzold/ The GDI Mapping ModeUp until now, all the sample programs have been drawing in units of pixels relative to the upper left corner of the client area.

2013-12-28 20:40:43 1007

转载 Win32 Series - Drawing Filled Areas

http://www-user.tu-chemnitz.de/~heha/petzold/Drawing Filled AreasThe next step up from drawing lines is filling enclosed areas. Windows' seven functions for drawing filled areas with borders are

2013-12-28 20:40:33 739

转载 Win32 Series - Drawing Dots and Lines

http://www-user.tu-chemnitz.de/~heha/petzold/ Drawing Dots and LinesIn the first chapter, I discussed how the Windows Graphics Device Interface makes use of device drivers for the graphics out

2013-12-28 20:40:22 1581

转载 Win32 Series - The Device Context

http://www-user.tu-chemnitz.de/~heha/petzold/ The Device ContextBefore we begin drawing, let's examine the device context with more rigor than we did inChapter 4. When you want to draw o

2013-12-28 20:39:19 1310

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

王洪辉 潜心力作-嵌入式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

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

Intel® 64 and IA-32 Architectures Software Developer’s Manual

Intel® 64 and IA-32 Architectures Software Developer’s Manual pdf document, 33M 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

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

High Efficiency Video Coding (HEVC) - Algorithms and Architectures

This book provides developers, engineers, researchers and students with detailed knowledge about the High Efficiency Video Coding (HEVC) standard. HEVC is the successor to the widely successful H.264/AVC video compression standard, and it provides around twice as much compression as H.264/AVC for the same level of quality.

2015-04-02

High Efficiency Video Coding - Coding Tools and Specification

The video coding standard High Efficiency Video Coding (HEVC) targets at improved compression performance for video resolutions of HD and beyond, providing Ultra HD video at similar compressed bit rates as for HD video encoded with the well-established video coding standard H.264/AVC. Based on known concepts, new coding structures and improved coding tools have been developed and specified in HEVC.

2015-04-02

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

H264-2014-02

Summary Recommendation ITU-T H.264 | International Standard ISO/IEC 14496-10 represents an evolution of the existing video coding standards (ITU-T H.261, ITU-T H.262, and ITU-T H.263) and it was developed in response to the growing need for higher compression of moving pictures for various applications such as videoconferencing, digital storage media, television broadcasting, Internet streaming, and communication. It is also designed to enable the use of the coded video representation in a flexible manner for a wide variety of network environments. The use of this Recommendation | International Standard allows motion video to be manipulated as a form of computer data and to be stored on various storage media, transmitted and received over existing and future networks and distributed on existing and future broadcasting channels.

2015-03-06

H265-2014-10

Rec. ITU-T H.265 v2 (10/2014) i Recommendation ITU-T H.265 High efficiency video coding Summary Recommendation ITU-T H.265 | International Standard ISO/IEC 23008-2 represents an evolution of the existing video coding Recommendations (ITU-T H.261, ITU-T H.262, ITU-T H.263 and ITU-T H.264) and was developed in response to the growing need for higher compression of moving pictures for various applications such as Internet streaming, communication, videoconferencing, digital storage media and television broadcasting. It is also designed to enable the use of the coded video representation in a flexible manner for a wide variety of network environments. The use of this Recommendation | International Standard allows motion video to be manipulated as a form of computer data and to be stored on various storage media, transmitted and received over existing and future networks and distributed on existing and future broadcasting channels. This Recommendation | International Standard was developed jointly with ISO/IEC JTC 1/SC 29/WG 11 (MPEG) and corresponds in a technically aligned manner to ISO/IEC 23008-2.

2015-03-06

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.002

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

2014-07-04

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

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

2014-07-04

空空如也

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

TA关注的人

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