Welcome![Sign In][Sign Up]
Location:
Search - opencv mouth

Search list

[Special EffectsFaceDetect

Description: 读取位图文件,标定出脸部区域,细化到左眼,右眼,鼻子,嘴的位置。-Read bitmap file, the demarcation of the facial region, thinning to the left eye, right eye, nose, mouth position.
Platform: | Size: 68608 | Author: 魏春雨 | Hits:

[Special EffectsMouth25x15

Description: OpenCV HaarCascades files for Mouth detection
Platform: | Size: 77824 | Author: lam | Hits:

[GIS programBoca

Description: 嘴的检测分类器人脸检测代码opencv 中专用-Mouth detection classifier
Platform: | Size: 94208 | Author: xzy | Hits:

[Otherensayook

Description: face, eyes, mouth detection with camera web...with opencv and c....Colombia mzls
Platform: | Size: 180224 | Author: maurogallo | Hits:

[Special EffectsFacemouthDection

Description: Face and mouth detection using OpenCV and VC-Face and mouth detection using OpenCV and VC++
Platform: | Size: 3961856 | Author: alittlecat | Hits:

[OpenCVmouthdetection

Description: 此程式碼可以用來偵測人類嘴巴,使用opencv和visualc++2005去實作.-This code can be used to detect the human mouth, using opencv and visual c++ 2005 to implement
Platform: | Size: 2508800 | Author: cheng yun-ting | Hits:

[Graph programsdi_opencv

Description: 运用VC软件做的一个基于OPENCV的人脸识别系统,在检测人脸的基础上能对人眼和嘴巴进行识别。-Use the software to do a VC OPENCV based face recognition system, based on face detection can identify the eyes and mouth.
Platform: | Size: 2114560 | Author: strangename | Hits:

[OpenCVthresholdtrans

Description: 用OPENCV的图像结口,写得阈值变换程序,和源码很像-Image Results by OPENCV mouth threshold transform written procedures, and source code like
Platform: | Size: 10240 | Author: liuzhiwen | Hits:

[OpenCVmouth-position

Description: 该程序是利用OPENCV的studio的c++上编成的程序。该程序能够大概的检测出嘴巴的大概位置。是实现嘴巴定位的基础 -The program is the use of OPENCV the studio on the c++ compiled programs. The program can detect the approximate location of the mouth about. The basis of positioning is to achieve mouth
Platform: | Size: 4451328 | Author: yanbingyin | Hits:

[OpenCVfacetest

Description: 级联分类器检测人脸,并定位脸部、眼睛和嘴巴,用到OPENCV分类器-Cascade classifier detects the face, and the positioning of the face, eyes and mouth, used OPENCV classification
Platform: | Size: 2993152 | Author: glemo | Hits:

[OpenCVOpenCV

Description: 基于opencv和vc++6.0实现的人脸检测,鼻子,嘴巴检测,眼睛检测。AVI播放器,手写数字识别,图像缩放等。-The opencv and vc++6.0 of realized based face detection, nose, mouth detection and eye detection. AVI player, handwritten numeral recognition, image scaling.
Platform: | Size: 30270464 | Author: lmy | Hits:

[OpenCVconnectprocess

Description: 在图像处理过程中,经常会遇到这样一部分图像,图像的整体部分如果人来看的话一眼就能看出,但是它的内部由于有各种小缺口,导致断开了,这样在计算机“眼”里就被认为是断开的,为了使图像达到适应人眼的感觉,需要将这些缺口和断开的口给连接上去,这就需要用到计算机图形学中的连通域处理技术。本文给出一个简单的连通域处理函数,当然这个函数是来自OpenCV著名教程Learning OpenCV中,只不过它的接口是基于c版本的OpenCV,而到目前为止,基于C++接口的OpenCV已经是主流,所以我将其接口改成了c++版的,但是其内部一些代码基本没有动它。-An integral part of the part of the image, the image of people look one can see in image processing, often encounter, but it is the internal cause disconnected due to a variety of small gap, so that the computer " eye " is considered to be disconnected in order to adapt to the human eye feeling image, you need to connect these gaps and disconnect the mouth up, which requires domain processing techniques used in computer graphics connectivity. This paper presents a simple connected domain processing function, this function is of course from Learning OpenCV OpenCV famous tutorial, but its interface is based on the c version of OpenCV, and so far OpenCV based on C++ interfaces has been the mainstream, so I interface into a c++ version, but some of its internal code basically did not move it.
Platform: | Size: 872448 | Author: wuwei | Hits:

[OpenCVFaceDetection

Description: opencv,c++,数字图像处理,人脸检测并标记特征点(眼睛,鼻子,嘴巴)-opencv, c++, digital image processing, face detection and mark the feature points (eyes, nose, mouth)
Platform: | Size: 27817984 | Author: 赵杰 | Hits:

[Special EffectsFaceDetectionCPP

Description: MFC实现的人脸检测,可以检测人脸位置,并标记眼睛、嘴巴、鼻子。没有使用OPENCV库函数,完全C语言实现。-MFC implementation of face detection that can detect human face position, and mark the eyes, mouth, nose. OPENCV library function is not used entirely in C language implementation.
Platform: | Size: 5008384 | Author: huyaoge | Hits:

[Special EffectsDetectEyes

Description: 运用C++检测人眼, 2)用opencv中检测人脸、眼睛、嘴巴等都是用的CascadeClassifier分类器,具体使用时可以使用C的函数,也可以使用opencv中使用C++封装好的类。下面是它们检测目标时的函数形式(从opencv官网复制的) C: CvSeq* cvHaarDetectObjects(const CvArr* image, CvHaarClassifierCascade* cascade, CvMemStorage* storage, double scale_factor=1.1, int min_neighbors=3, int flags=0, CvSize min_size=cvSize(0,0), CvSize max_size=cvSize(0,0) ) C++: void CascadeClassifier::detectMultiScale(const Mat& image, vector<Rect>& objects, double scaleFactor=1.1, int minNeighbors=3, int flags=0, Size minSize=Size(), Size maxSize=Size()) 这两者最大的区别在于,用C封装的函数要自己手动分配内存,而用C++的形式则不用自己去分配内存,这就是很多同学在网上找到的代码有些要分配内存,有些又不用分配内存的原因。显然C++的形式更简洁,所以我下面的代码也是用的C++的函数。- Detected with opencv face, eyes, mouth, etc. are used CascadeClassifier classification, you can use C functions specific use, you can use opencv use C++ classes packaged. Here is the form of the function when they detect target (copied the opencv official website)
Platform: | Size: 2655232 | Author: 刘卓 | Hits:

[OpenCVhaarcascades

Description: 可以在 opencv安装目录opencv\sources\data中找到。方便大家下载,故上传在这里。人脸检测,人脸识别,人眼检测,鼻子检测,嘴检测等等训练好的xml文件(You can find it in the opencv installation directory opencv\sources\data. Convenient for everyone to download, so upload here. Face detection, face recognition, eye detection, nose detection, mouth detection, and so on, the training of good XML files)
Platform: | Size: 2080768 | Author: zhangsan123321 | Hits:

CodeBus www.codebus.net