CodeBus
www.codebus.net
Search
Sign in
Sign up
Hot Search :
Source
embeded
web
remote control
p2p
game
More...
Location :
Home
Search - h.3
Main Category
SourceCode
Documents
Books
WEB Code
Develop Tools
Other resource
Search - h.3 - List
[
Dialog_Window
]
2007
DL : 0
全部API,自绘图形而成! 编译方法: 1)加入XPLIB.lib库 2)加入CLASSXP.H 3)在菜单中Project\\Settings\\C/C++-Precompiled headers 选No using......项目。(否则不能编译通过)
Date
: 2008-10-13
Size
: 193.91kb
User
:
lijunwei
[
Dialog_Window
]
2007
DL : 0
全部API,自绘图形而成! 编译方法: 1)加入XPLIB.lib库 2)加入CLASSXP.H 3)在菜单中Project\Settings\C/C++-Precompiled headers 选No using......项目。(否则不能编译通过)-All API, since the shape from the drawing! Compile Method: 1) by adding XPLIB.lib Library 2) by adding CLASSXP.H3) in the menu ProjectSettingsC/C++-Precompiled headers election No using ...... project. (Otherwise, the compiler should not through)
Date
: 2025-12-17
Size
: 194kb
User
:
lijunwei
[
Dialog_Window
]
TabSheet
DL : 0
/*********************************************************************** * 本类名称:属性对话框编程调用类库(VC++版) * 支持功能:动态添加、移除属性页;动态修改属性页标题;设置活动属性页;获取属性页的属性等。 * 编写人员:Coderui * 编写日期:2009年02月03日 * 最后更新:2009年02月09日 * 联系邮箱:coderui@163.com * 作者博客:http://hi.baidu.com/coderui * 文件名称:TabSheet.h ***********************************************************************/-/************************************************************************ Class Name: Call Properties dialog box programming library (VC++ version)* Supported features: dynamically add, remove property pages dynamic modify attribute page title Activity property page settings access to the properties, such as property pages.* The preparation of personnel: Coderui* preparation Date: February 3, 2009* Last Update: February 9, 2009* Contact Email: coderui@163.com* Author blog: http://hi.baidu.com/coderui* File Name: TabSheet.h***********************************************************************/
Date
: 2025-12-17
Size
: 21kb
User
:
coderui
[
Dialog_Window
]
ColorPicker
DL : 0
ColorPicker是一个基于对话框的应用程序,它具有以下功能: 1. 色彩编辑功能 用户可以通过可以调整R、G、B的值来编辑颜色,亦可通过调整H、S、V的值来选取颜色。颜色编辑的结果会马上反馈到颜色面板和颜色预览框中。 2.RGB颜色空间和HSV颜色空间的转换 当改变RGB值,会得到相应的HSV值,并进行显示,反之亦然。 3.取色功能 取色功能包含“面板取色”和“屏幕取色”。面板取色就是用户可以在颜色面板中单击鼠标左键,选取目标点所表示的某种颜色。屏幕取色则是允许用户获取整个屏幕上的任意一点的颜色值。用户可以将鼠标移动到需要获取颜色的地方,然后按a键或A键即可以获取该点颜色值。 -Based on Dialog,it can edit color and so on.
Date
: 2025-12-17
Size
: 53kb
User
:
iVan
[
Dialog_Window
]
EEE-212-lab-sheet
DL : 0
empirical formula with kaiser clc clear all fs=1000 fc=250 df=50 r=0.001 f=fc/fs dw=2*pi*(df/fs) a=-20*log(r) n=floor(((a-8)/(2.285*dw))+1) if a>50 b=0.1102*(a-8.7) elseif a>=21 && a<=50 b=0.5842*((a-21)^0.4)+0.07886*(a-21) elseif a<21 b=0.0 end w=kaiser(n,b) for i=1:n if i~=(n-1)/2 hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f) elseif i==(n-1)/2 hd(i)=2*f end end for j=1:n h(j)=w(j)*hd(j) end subplot(3,1,1), plot(w) subplot(3,1,2), plot(h) subplot(3,1,3), plot(h,n) - empirical formula with kaiser clc clear all fs=1000 fc=250 df=50 r=0.001 f=fc/fs dw=2*pi*(df/fs) a=-20*log(r) n=floor(((a-8)/(2.285*dw))+1) if a>50 b=0.1102*(a-8.7) elseif a>=21 && a<=50 b=0.5842*((a-21)^0.4)+0.07886*(a-21) elseif a<21 b=0.0 end w=kaiser(n,b) for i=1:n if i~=(n-1)/2 hd(i)= (2*f*sin((i-((n-1)/2))*2*pi*f))/((i-((n-1)/2))*2*pi*f) elseif i==(n-1)/2 hd(i)=2*f end end for j=1:n h(j)=w(j)*hd(j) end subplot(3,1,1), plot(w) subplot(3,1,2), plot(h) subplot(3,1,3), plot(h,n)
Date
: 2025-12-17
Size
: 529kb
User
:
rezwan
[
Dialog_Window
]
Digital-Image-Processing
DL : 1
有源码,适合学习C++的人 一、 读入一幅灰度图象,编写程序显示图象中任一象素点的灰度值。 二、 编程实现RGB彩色空间到HSV彩色空间的转换,并通过调整H、S、V的值实现图像亮度、色度和色饱和度的调节。 三、 1.灰度线性变换、分段线性变换 2.灰度直方图均衡、规格化 3.图象卷积:各种模板实现低通、高通滤波 4.图象中值滤波、最大值滤波、最小值滤波、模板选择滤波 5.伪彩色图象增强 四、 1.图象的加、减、乘、除和逻辑运算。 2.图象的镜像变换、图象的缩放(灰度插值)变换 五、 编程实现图象的FFT变换和反变换 六、 用逆滤波方法和维纳滤波方法恢复运动模糊图象(加噪声和不加噪声) 七、 编写程序实现灰度图象的分割: 1、阈值化算法:手动阈值、自动阈值(大津阈值) 2、区域生长 3、区域分裂合并-There is source code for learning C++ people one reads a grayscale image, write a program to display the image in any one pixel gray value. Second, the programming RGB color space to the HSV color space conversion, and by adjusting the H, S, V values achieve adjust image brightness, color and color saturation. Third, 1 gray linear transformation, piecewise linear transformation 2. histogram equalization 3. image normalized convolution: a variety of templates for low pass, high pass filter 4. image median filtering, the maximum filter minimum filtering, template selection pseudo-color image enhancement filter 5. four, plus 1 image, subtract, multiply, divide, and logic operations. 2. The image of image transformation, zoom images (grayscale interpolation) into five, programming image of FFT and inverse transform six, inverse filtering method and Wiener filtering method to restore motion blur image (plus noise and without noise) Seven, programming Grayscale image segmentation: 1, thresho
Date
: 2025-12-17
Size
: 1.02mb
User
:
zl
[
Dialog_Window
]
visual-cPP
DL : 0
C++ QT 3D IDE for development of VS1003, VS Show time applet on the desktop, Music Search Software The NAudio Play wav, MP3 and othe a mp3 player,simple but a good ex five files inside the documents the gstreamer-sdk inside the exam Calculate the mp3 player time, ca Loading the lyrics RM skin video player program. mpeg-2,mp3 encoder and decoder The mp3 decode program can conver VOD system source on mp3 algorithm on and implement H.264 codec source code has been mpeg/audio adds the decoding proc FFmpeg extract a VC works ou Programming Interface Super decod Transfer avi to mpeg1 u-ATMEL mp3 program includes SCH, Source for the Distributed Real-T Poetic charm mp3 play MP1/MP2/MP3 decoder Berkeley Plateau Research Group M which contains the following elem MPEG-1 video stream editor for Un Berkeley Plateau Research Group M Michael Simmons MPEG-1 systems st MPEG 1 layer 3 audio player sourc Mailto US | Copyright Complaints-C++ QT 3D IDE for development of VS1003, VS Show time applet on the desktop, Music Search Software The NAudio Play wav, MP3 and othe a mp3 player,simple but a good ex five files inside the documents the gstreamer-sdk inside the exam Calculate the mp3 player time, ca Loading the lyrics RM skin video player program. mpeg-2,mp3 encoder and decoder The mp3 decode program can conver VOD system source on mp3 algorithm on and implement H.264 codec source code has been mpeg/audio adds the decoding proc FFmpeg extract a VC works ou Programming Interface Super decod Transfer avi to mpeg1 u-ATMEL mp3 program includes SCH, Source for the Distributed Real-T Poetic charm mp3 play MP1/MP2/MP3 decoder Berkeley Plateau Research Group M which contains the following elem MPEG-1 video stream editor for Un Berkeley Plateau Research Group M Michael Simmons MPEG-1 systems st MPEG 1 layer 3 audio player sourc Mailto US | Copyright Complaints
Date
: 2025-12-17
Size
: 18kb
User
:
lk
CodeBus
is one of the largest source code repositories on the Internet!
Contact us :
1999-2046
CodeBus
All Rights Reserved.