MTOOLS version 2.0 Mtools is a public domain collection of programs to allow Unix systems to read, write, and manipulate files on an MSDOS filesystem (typically a diskette). The following MSDOS commands are emulated: Mtool MSDOS name equivalent Description ----- ---- ----------- mattrib ATTRIB change MSDOS file attribute flags mcd CD change MSDOS directory mcopy COPY copy MSDOS files to/from Unix mdel DEL/ERASE delete an MSDOS file mdir DIR display an MSDOS directory mformat FORMAT add MSDOS filesystem to a low-level format mlabel LABEL make an MSDOS volume label. mmd MD/MKDIR make an MSDOS subdirectory mrd RD/RMDIR remove an MSDOS subdirectory mread COPY low level read (copy) an MSDOS file to Unix mren REN/RENAME rename an existing MSDOS file mtype TYPE display contents of an MSDOS file mwrite COPY low level write (copy) a Unix file to MSDOS
标签: collection programs version systems
上传时间: 2016-11-18
上传用户:wlcaption
Embest开发的nor flash读写工程,完成了flash的sector erase,read,write功能,适合嵌入式系统设计初学者。
上传时间: 2013-12-26
上传用户:aeiouetla
A stability analysis is presented for staggered schemes for the governing equations of compressible flow. The method is based on Fourier analysis. The approximate nature of pressure-correction solution methods is taken into account. 2001 IMACS. Published by Elsevier Science B.V. All rights reserved
标签: compressible stability for equations
上传时间: 2016-12-02
上传用户:yph853211
Design patterns are elegant, adaptable, and reusable solutions to everyday software development problems. Programmers use design patterns to organize objects in programs, making them easier to write and modify. C# Design Patterns: A Tutorial is a practical guide to writing C# programs using the most common patterns. This tutorial begins with clear and concise introductions to C#, object-oriented programming and inheritance, and UML diagrams. Each chapter that follows describes one of twenty-three design patterns, recommends when to use it, and explains the impact that it will have on the larger design. The use of every pattern is demonstrated with simple example programs. These programs are illustrated with screen shots and UML diagrams displaying how the classes interact. Each of these programs is available on the companion CD-ROM and can be run, examined, edited, and applied.
标签: development adaptable solutions patterns
上传时间: 2014-09-07
上传用户:wangchong
15篇光流配准经典文献,目录如下: 1、A Local Approach for Robust Optical Flow Estimation under Varying 2、A New Method for Computing Optical Flow 3、Accuracy vs. Efficiency Trade-offs in Optical Flow Algorithms 4、all about direct methods 5、An Introduction to OpenCV and Optical Flow 6、Bayesian Real-time Optical Flow 7、Color Optical Flow 8、Computation of Smooth Optical Flow in a Feedback Connected Analog Network 9、Computing optical flow with physical models of brightness Variation 10、Dense estimation and object-based segmentation of the optical flow with robust techniques 11、Example Goal Standard methods Our solution Optical flow under 12、Exploiting Discontinuities in Optical Flow 13、Optical flow for Validating Medical Image Registration 14、Tutorial Computing 2D and 3D Optical Flow.pdf 15、The computation of optical flow
标签: 光流
上传时间: 2014-11-21
上传用户:fanboynet
多用户多级目录的文件系统,(1)具有login (用户登录) (2)系统初始化(建文件卷、提供登录模块) (3)文件的创建: create (4)文件的打开:open (5)文件的读:read (6)文件的写:write (7)文件关闭:close (8)删除文件:delete (9)创建目录(建立子目录):mkdir (10)改变当前目录:cd (11)列出文件目录:dir (12)退出:logout
上传时间: 2014-01-03
上传用户:love_stanford
the code environment s C++. it is in image processing field. this code Read TIFF Image then it excute a Median Filter Classical on gray images. after that it Write TIFFU nsigned Char.
标签: code environment processing Image
上传时间: 2016-12-24
上传用户:xiaoxiang
it is in image processing field. this code Read TIFF Image then it excute compute histogram and histogram equalization. after that it Write TIFFU unsigned Char.
标签: processing histogram compute excute
上传时间: 2016-12-24
上传用户:cx111111
辅助说明: 代码交流 QQ59771230 email:choudaxian@163.com 注意事项: 1) LCD 指令中的TEXT GRAPHIC AREA SET效果是什么样的 2) LCD 指令中的MODE SET中的OR AND XOR 有图层的味道 3) DJNZ+指令C0H(DATA AND WRITE)与相同的数据时就会出错 4) CHAR ADN PIC分别清除 5) 几何图形绘制与实现图形 6) 菜单优化设计,结构体:上,下,上一组,下一组,指向函数的指针 显示的内容: 16*16汉字:欢迎使用福莱特电气有限公司产品 12*12汉字:进入主界面并且可以反显 8*8字符:FULL-RIGHT 并对所显示的汉字进行卷屏显示 关键是如何方便在屏上确定的位置上显示确定的汉字 要使占用ROM,RAM小的前提下
标签: choudaxian 59771230 GRAPHIC email
上传时间: 2016-12-28
上传用户:xauthu
COM组件调用方法: 首先 运行 “注册USBPass组件.bat” ,在系统中注册USBPassW.dll 和 USBPassR.dll 1>在VB6.0的调用 打开一个工程 菜单->工程->引用-> 在打开的窗口中 选择“USBPass-Write (基于U盘的授权系统 V3.0)”和“USBPass-Write (基于U盘的授权系统 V3.0)” 然后可按照Demo中的方式使用。 2>在Delphi7的调用 打开一个工程 菜单-> Project-> Import Type Library...->在打开的窗口中分别选择 “USBPass-Write (基于U盘的授权系统 V3.0)(Version 1.0)”和“USBPass-Write (基于U盘的授权系统 V3.0)(Version 1.0)” 然后点击按钮"Install..." 然后在 控件栏的“ActiveX”页上找到两个对应的COM,再按照Demo中的方法使用。 3>在VC6.0 中调用 打开一个工程 按Ctrl+W调出类向导,按Add Class按钮弹出新菜单,选From a type libarary,然后定位到USBPassW.dll 和USBPassR.dll,接下来会出来 该simpCOM中的所有接口,选择你想生成的接口包装类后,向导会自动生成相应的.cpp和.h文件. 这样你就可以在你的MFC工程中像使用普通类那样使用COM组件了. 具体的见 如何在VC++中调用标准COM组件.mht
上传时间: 2014-01-06
上传用户:爺的气质