I want to create a "face warp" application, like the one for mobile phones but for a pc desktop application instead. I have search the net for a library that does that but found none.
I want to create images like this one: http://moblog.net/view/178542/sony-ericsson-k800i-camera-phone-review-face-warp-2
Does anyone know if there is an existing library that does this, preferably in c#?
Or any image processing lib that is possible to use?
Regards Anders
Emgu CV may greatly help you. AFAIR, it supports face detections and some transformations.
Related
I am using WPF application for photo gallery and I would like to add face recognition to my app.
Any suggestions to do that?
WPF itself won't help yo at all: it's just a way of defining what happens in a Window. You would need to add code utilising a suitable Machine Learning library capable of detecting faces in photos.
I won't go into how the ML libraries need to be set up and trained, or how there might be one already suitably primed available (I don't know). That's a rather large subject and is nothing to do with any presentation layer technology.
i know this is most likely a duplication and i am truly sorry for that but most of the solutions i found was either +7 years outdated, bugged or consume so much memory
all i need is an efficient way to access the webcam to record and display to use it in a computer vision project to detect moving objects and such, with an HD output (using HD camera of course)
also if there is a library that would help with the computer vision that would also be great
any information, tips or experience would be highly appreciated, thanks in advance and have a wonderful day.
You could use AForge.net, it's available as a nuget package and gets the job done.
Here is an example of it. It's a winform application, but I use this library in WPF app as well.
[EDIT] Actually, I think I found what you're looking for, download this. It's a piece of code that has been written for a french azure contest. It's a motion detector written with aforge.net. There is 2 part to it, the first is a wpf client that capture movement. The second is an azure website where the image captured is uploaded automatically.
I am doing my project regarding image processing in c#. Here I don't know, how to find face, eyes from image (not webcam). The image will be stored in a specific folder. I am installing EmguCv package, but it not at all work. What are my questions means,
Is Emgu CV works Window 8 OS?
I am searching via net, all the contents are related to find face through webcam. But I want to find a face from photo/image. Please tell the solution.
Which is compatible image processing library for windows 8 and Visual Studio 2010?
Is there any source code satisfies my certain condition. Please post here.
Thank you.
You can use an SDK. Aforge should be what you need. Try looking at some of the examples provided from their own source code to point you in the right direction.
As far as I am concerned EmguCV is a dot-net port of famous library named OpenCV with good reliability that you can count on it and do your project.What's more, thanks to its nature which is a library (dll) you could easily use it in your project and run wherever CLR is running, including windows 8 OS.
I am working on an image editor app having functions like cropping, text rendering, framing etc. I want to implement sketch effect now ie, the photo shall be converted to sketch. I am using Nokia.Graphics.Imaging.Managed library for doing it. It works very fine but only in wp8.
the dll is not compatible for wp7. Please suggest me any free library or any image manipulation method to achieve the functionality.
Thanks in advance
Aviary I've used in the past. Read their terms and conditions if you decide to go with their SDK.
I am now facing one problem which to get the live image from Camera (eg. Sony, Canon) into winform and also control the camera capture button from a button in the form.
have Anyone build something like this, or are there any similar project like this which is done in C#?
This hardly depends on the capabilities of the camera and its driver. Your biggest chance might be the Windows Image Acquisition (WIA) framework.
Take a look at this article or the MSDN reference.
Emgu cv is a project that provides all the bindings for OpenCV. I've used it on both Windows and Linux platforms (Mono) with great success.
http://emgu.com/
http://emgu.com/wiki/index.php/Camera_Capture_in_7_lines_of_code
You can also take a look on Intel OpenCV.
It's C++, but you can use use PInvoke to use it from c#
This project supports even high-end PTZ camera. Code Project - Versatile WebCam C# library.
It uses Touchless.Vision and WebCamLib