-
Image enhancement based
基于统计的图像增强,利用此程序可以方便的进行增强处理,得到良好效果-Image enhancement based-on local statistics using colfilt
- 2022-08-06 23:00:21下载
- 积分:1
-
人脸识别软件,可以识别人脸进行监控的软件
人脸识别软件,可以识别人脸进行监控的软件-face reco
- 2023-06-04 11:15:04下载
- 积分:1
-
多边形游戏
多边形游戏-polygon game
- 2022-06-27 10:26:44下载
- 积分:1
-
a complete Visual C program includes a RGB image adjustment, Fourier transform,...
一个完整的Visual C++程序,包含了图像的RGB调整,傅立叶变换,傅立叶反变换,对比度调整,颜色转换 梯度算子检测,sobel算子检测 均值滤波和中值滤波,程序已经通过调试.-a complete Visual C program includes a RGB image adjustment, Fourier transform, Fourier transform, contrast adjustment, color conversion operator gradient detection, segmentation operator for the mean and median filtering filtering, testing procedures have been adopted.
- 2022-02-04 05:12:30下载
- 积分:1
-
put image processing procedures into MATLAB C Program
把图像处理的MATALAB程序转化为C++程序-put image processing procedures into MATLAB C Program
- 2023-04-04 19:50:03下载
- 积分:1
-
AppWizard has created this bmptest application for you. This application
not o...
AppWizard has created this bmptest application for you. This application
not only demonstrates the basics of using the Microsoft Foundation classes
but is also a starting point for writing your application.
This file contains a summary of what you will find in each of the files that
make up your bmptest application.-AppWizard has created this bmptest applic ation for you. This application not only demons trates the basics of using the Microsoft Founda tion classes but is also a starting point for wri ting your application. This file contains a sum mary of what you will find in each of the files tha t make up your bmptest application.
- 2022-02-14 01:01:13下载
- 积分:1
-
显示如何利用Camshift算法进行彩色目标的跟踪
显示如何利用Camshift算法进行彩色目标的跟踪-Show how to use color Camshift algorithm tracking
- 2022-03-20 03:48:32下载
- 积分:1
-
write their own image processing filters used in the source code, can be slightl...
这是一个自己写的图像处理中常用的滤波器程序源代码,可以稍加修改为自己需要的东西。希望对大家有用。-write their own image processing filters used in the source code, can be slightly modified for their needs. We hope that the right useful.
- 2022-09-19 04:35:03下载
- 积分:1
-
Based on visual c++ 2005 and OpenCV is a static environment FaceDetection face d...
基于visual c++ 2005和OpenCV环境
FaceDetection是一个静态人脸检测程序,注意FaceDetection需要OpenCV提供的库支持,因此请首先到相关网站上下载并安装OpenCV,此外本程序需要导入一个分类器文件haarcascade_frontalface_alt.xml,该文件在OpenCV中提供,请读者将该文件复制到程序同一目录下,程序即可正确运行。-Based on visual c++ 2005 and OpenCV is a static environment FaceDetection face detection procedures, attention to the needs of FaceDetection library OpenCV support provided, so please first of all to the relevant Web site to download and install OpenCV, addition of this procedure needs to import a document classifier haarcascade_frontalface_alt.xml, the document provided in OpenCV, the reader is the file copied to the procedures under the same directory, the program can run correctly.
- 2022-01-26 03:18:51下载
- 积分:1
-
系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分...
系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。
现在,行编辑器具有如下编辑命令:
行插入:i #/串
在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。
文本替换:c 被替换串/替换串
将整个文本中全部[被替换串]替换为[替换串]。
行删除:d #
其中#为指定的行号
行合并:f #1/#2/#3...
将行号为 #2 和 #3...的行连接到行号为 #1 的行的后面,取消原来的 #2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。
输入:
这段文本用[Text]......[/Text]的形式描述,之后是一串操作命令如:
[Text]
1 222 33 44
2 333 45 d b g 3
3 444 56 333 54
[/Text]
c 333/zhang
d 1
-系统约定:行编辑命令由“命令关键字 命令参数”组成。其中,命令关键字都是单一的字母,命令与参数之间使用一个空格进行分割,当命令参数为多个时采用“/”作为参数的分隔符,如果在命令的参数中间出现符号“/”,则用“/”表示。我们将“”定义为转义符。
现在,行编辑器具有如下编辑命令:
行插入:i#/串
在指定行号(>0)插入一个新行,新行的内容就是命令中给出的“串”。若插入的行超过了已有的行数,则在最后一行的后面插入一个新行。
文本替换:c 被替换串/替换串
将整个文本中全部[被替换串]替换为[替换串]。
行删除:d#
其中#为指定的行号
行合并:f#1/#2/#3...
将行号为#2 和#3...的行连接到行号为#1 的行的后面,取消原来的#2 行和#3等,合并后#2行和#3等原来的内容不存在了,被后面的行抵补替代。若指定行号超出正文的范围,则放弃操作。
输入:
这段文本用[Text]......
- 2022-03-03 09:48:33下载
- 积分:1