-
face_recognizer
eigenfacerecognizer algorithm
- 2016-07-10 16:49:49下载
- 积分:1
-
am335x
测试am335xgpio功能,gpio驱动(Test am335xgpio function, GPIO driver)
- 2020-06-21 06:40:02下载
- 积分:1
-
CHAPT05
CHAPT05CHAPT05.CPP 16-Bit test program for the initelligent Digi board.
CHAPT05CHAPT05.EXE 16-Bit executable of the test program
CHAPT05CHAPT05.MAK A makefile for Borland or Microsoft C++
CHAPT05DIGI.CPP Implementation of the Digiboard class
CHAPT05DIGI.H Declaration of the Digiboard cla
- 2007-11-11 17:44:43下载
- 积分:1
-
Face-deformation
C++,人脸变形,选择图片,在图片中选择一个四边形窗口(人物脸部),然后再在内部选择一个四边形窗口,逆时针选择,然后点击变形直接呈现变形结果,点击动画可以查看人脸变形过程(C++ program, select a picture, choose a quadrilateral window (human faces) in the picture, and then select a quadrilateral inside the window, counter-clockwise to select, then click on the deformation presented directly deformation results, click animated facial deformation process can be viewed)
- 2014-02-16 13:46:01下载
- 积分:1
-
Qt鼠标拖拉绘制直线和矩形
Qt鼠标拖拉绘制直线和矩形:点击选择所要绘制的图形,利用鼠标拖拉绘制图图形,简单方便!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!1
- 2022-02-28 17:43:11下载
- 积分:1
-
仿造酷狗音乐最新版代码(含各种用户控件源码)
11111111111111111111111 核心代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Runtime.InteropServices;using System.IO;using MediaControlLibrary;namespace MusicPlayer{ public partial class MainForm : Form { //public const Int32 AW_HOR_POSITIVE = 0x00000001; //public const Int32 AW_HOR_NEGATIVE = 0x00000002; //public const Int32 AW_VER_POSITIVE = 0x00000004; //public const Int32 AW_VER_NEGATIVE = 0x00000008; public const Int32 AW_CENTER = 0x00000010; //public const Int32 AW_HIDE = 0x00010000; //public const Int32 AW_ACTIVATE = 0x00020000; //public const Int32 AW_SLIDE = 0x00040000; //public const Int32 AW_BLEND = 0x00080000; public MainForm() { InitializeComponent(); //设置最大尺寸,防止全屏时遮挡任务栏 this.MaximumSize = Screen.PrimaryScreen.WorkingArea.Size; //启动动画 AnimateWindow(this.Handle, 100, 0x00000010);//开始窗体动画,中心展开 //歌词窗口 //lyricShow1.InitAndShowDesktopLyric(); for (int i = 0; i < 1; i ) { MediaList list = new MediaList("默认列表"); for (int j = 0; j < 10; j ) { MediaItem item = new MediaItem("歌曲" j, "00:00"); item.SecondContent = "111223"; list.SubItems.Add(item); } mediaContainer1.Lists.Add(list); MediaList list1 = new MediaList("新建列表"); mediaContainer1.Lists.Add(list1); } } /// /// 退出时动画效果 /// /// /// private void MainForm_FormClosed(object sender, FormClosedEventArgs e) { if (this.WindowState != FormWindowState.Minimized) { while (this.Height > 10) { this.Location = new Point(this.Location.X, this.Location.Y 15); this.Height -= 30; this.Opacity -= 0.01; } } Application.Exit(); } #region 播放控制与信息显示相关变量 MyMedia mySong = new MyMedia(); bool IsMute = false; bool IsStop = false; #endregion #region API和常量 [DllImport("user32.dll")] private static extern bool AnimateWindow(IntPtr hwnd, int dwTime, int dwFlags); [DllImport("user32.dll")] public static extern bool ReleaseCapture(); [DllImport("user32.dll")] private static extern bool SendMessage(IntPtr hwnd, int wMsg, int wParam, int lParam); private const int WM_SYSCOMMAND = 0x0112; private const int SC_MOVE = 0xF010; private const int HTCAPTION = 0x0002; private const int WM_NCHITTEST = 0x84; private const int HTCLIENT = 0x1; private const int WM_NCLBUTTONDBLCLK = 0xA3;//鼠标双击标题栏消息 //改变窗体大小 public const int WMSZ_LEFT = 0xF001; public const int WMSZ_RIGHT = 0xF002; public const int WMSZ_TOP = 0xF003; public const int WMSZ_TOPLEFT = 0xF004; public const int WMSZ_TOPRIGHT = 0xF005; public const int WMSZ_BOTTOM = 0xF006; public const int WMSZ_BOTTOMLEFT = 0xF007; public const int WMSZ_BOTTOMRIGHT = 0xF008; #endregion #region 无边框窗口拖动及大小状态切换 protected override CreateParams CreateParams { get { const int WS_MINIMIZEBOX = 0x00020000; // Winuser.h中定义 CreateParams cp = base.CreateParams; cp.Style = cp.Style | WS_MINIMIZEBOX; // 允许最小化操作 return cp; } } private void tpnlMain_MouseDown(object sender, MouseEventArgs e) { //如果是顶部或底部的空栏 if ((e.Y > 0 && e.Y < 30) || (e.Y > this.Height - 40 && e.Y < this.Height)) { //按下的是鼠标左键,则拖动窗口 if (e.Button == MouseButtons.Left) { ReleaseCapture(); SendMessage(this.Handle, WM_SYSCOMMAND, SC_MOVE HTCAPTION, 0);//*********************调用移动无窗体控件函数 } //双击顶部标题栏切换窗口状态 if ((e.Y > 0 && e.Y < 30) && e.Button == MouseButtons.Left && e.Clicks == 2) { if (this.WindowState == FormWindowState.Normal) { SendMessage(this.Handle, 274, 61488, 0); return; } if (this.WindowState == FormWindowState.Maximized) { SendMessage(this.Handle, 274, 61728, 0); return; } } } //拉伸改变大小 if (e.Y>0&&e.Y
- 2014-06-07下载
- 积分:1
-
20071212121753329
TMS320LF2407上实现快速傅里叶变换(FFT)(TMS320LF2407 achieve fast Fourier transform (FFT))
- 2008-04-26 15:03:50下载
- 积分:1
-
kongzhixitongsheji
说明: matlab说明,各种各样的公式符号说明(matlab shows a variety of formulas symbol description)
- 2010-04-26 13:15:53下载
- 积分:1
-
通讯录的设计
通讯录的设计,使用c#语言主要对xml文件进行操作,具体实现了添加、删除、修改分组,读取、新建、查找、删除联系人,除此之外丰富了添加下级分组的功能,和依据具体不同信息查找联系人的功能,“list”和”addresslist”XML文件用于记录分组信息和联系人信息,开发工具是visual studio2013
- 2022-03-19 18:57:37下载
- 积分:1
-
ReadRaster
说明: 使用GDAL的c#版本读取栅格图 gdal文件已经编译完成(Use C version of Dgal to read raster)
- 2021-01-01 13:18:58下载
- 积分:1