 |
|
 |
I want to start a project that is described on this page: http://www.codeproject.com/KB/mcpp/iss.aspx
But when compiling climbs error:
Warning:
1.) Is not found component "FaceDetection.Wrapper", to which the link points.
2.) Is not found component "Tiger.Video.VFW", to which the link points.
3.) Failed to resolve this link. Could not locate the assembly "Tiger.Video.VFW". Make sure that the assembly exists on the disk. If this link is required in the code, it may cause compile-time error. DxCam
Help, I want to run the project, and see how it works.
|
|
|
|
 |
|
 |
Here is the message:
The specified module could not be found. (Exception from HRESULT: 0x8007007E)
|
|
|
|
 |
|
 |
Dear Mr. Zeeshan,
Nice 2 know u. I need your help. I got a face recognition program for absence system using webcam (VB 6). Can u convert that program to VB 2008? Or maybe u can help me 2 build a new one? Please help me. I’m doing this 4 my final thesis.
|
|
|
|
 |
|
|
 |
|
 |
great article, many thanks.
I'm trying to replicate your work, but I cannot understand what is in the haarcascade xml file about. Can you explain me what are left_value, right_value, threshold...etc??
|
|
|
|
 |
|
 |
Haar cascades are the result of Haar Training as described in OpenCV. Use OpenCV version 0.99 OR version 1.0 if the detection fails with the latest version of OpenCV. I have not tested these with newer version of OpenCV
Read These,
http://alereimondo.no-ip.org/opencv/34
http://opencv.willowgarage.com/wiki/FaceDetection
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
I'm using your source code under .net 2008, but in the runtime , an exception is thrown in the main function on this line
Application.Run(new frmFaceDetection());
I tried to make some steps u mentioned in the "Face and Eyes Detection Using OpenCV " on a similar problem but it still doesn't work. neither with the 2003 version nor the 2005.
do u have any idea what should i do ?
|
|
|
|
 |
|
 |
Use opencv 1.0 OR 0.99
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
It doesn't work!!! I've no idea...
I installed 1.0 version.
|
|
|
|
 |
|
 |
Does anyone have an example of captureing the facial features, storing these features for reuse for Facial Matching or Recognition using OpenCV, C# within a .net application?
|
|
|
|
 |
|
 |
I have used this code in appearance based face recognition algorithm. The recognition phase require the facial characteristics for preprocessing (alignment, rotation and resizing). Consider asking this question in the OpenCV mailgroups.
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
Error 23 fatal error LNK1181: cannot open input file 'cvd.lib' FaceDetection.Wrapper
where can I find this lib?
|
|
|
|
 |
|
 |
Okay, so http://www.intel.com/technology/computing/opencv/faq.htm explains the problem and fixes it. It even compiled. But again I have a new issue: Error 23 error LNK2001: unresolved external symbol "?.cctor@@$$FYMXXZ" (?.cctor@@$$FYMXXZ) clsFaceDetectionWrapper.obj
and so on. I'm just wondering if trying to get this to work is any smarter than making a new wrapper?
-bg
|
|
|
|
 |
|
 |
Any answer to this problem ?
TheStranger
|
|
|
|
 |
|
 |
Hi
I am trying to use the following (from #Region "DEPCRECATED") after converting most of what i need to VB.net:
pbPicture.ResumeLayout(True)
Dim img As New System.Drawing.Bitmap(pbPicture.Image)
Dim mIndex As Integer = faceLocator.WrapDetectFaces(img)
'DirectCast(pbPicture.Image, Bitmap))
However no matter what I pass as the img i am getting an mindex=0.
Any help would be appreciated.
Thanks
Mike
|
|
|
|
 |
|
 |
HI,
The face detect project accepts pointer to the managed image. VB.NET does not have pointers so you cannot use VB.NET with this project.
A helpful chap created a VB.NET wrapper for this project. Either use C#/Managed C++ or Use the above mentioned VB.NET Wrapper. Here is the link for the VB.NET wrapper
http://www.zen-turkey.com/blog/default.aspx?id=42&t=VB-NET-Wrapper-For-Face-Detection
Donot forget to vote
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
Hey thanks
I had downloaded this before i started on the quest to convert to VB but could get it to work. I read that you can create a "wrapper" and then call the code but im taking a beating.
Any help would be great.
MP
|
|
|
|
 |
|
 |
have you placed the required binaries in the same folder? i.e. runtime dlls and the cascades(xml) files?
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
link is down may some one send us the project of the link up there
thanks
|
|
|
|
 |
|
 |
Hi,
I would like to call the function "WrapGetFaceCordinates" within my C# code (after calling WrapDetectFaces) so i can draw rectangles from the coordinates retrieved from "WrapDetectFaces". I have issues with the pointers paramters when using in C#.
Any help on how to use properly WrapGetFaceCordinates from C# would be much apreciated.
thank you,
Best.
Sami Eddaikra
|
|
|
|
 |
|
 |
I donot remm the function definition at the moment and will hit you back in a couple of days with correct/verified info. But herez what I remember to the best of my memory...
The first parameter is the index of the face (object if someother cascade is used). A maximum of 5 objects are kept in memory so it can be between 0 and 4.
The next 4 parameters are either TopX,TopY,Height,Width OR they are TopX,TopY,BottomX,BottomY don't remm it to be exact. open the source of facedectection wrapper you'll know after u see the source code.
to use pointer in C# set the project properties to allow unsafe code blocks, help about pointers in C# can be found on internet (shouldn't be hard to find)
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
thanks for the reply,
i got to use it work the way i wanted to!
Best,
Sami
|
|
|
|
 |
|
 |
Thats great! would you like to share your experience in the form of a tutorial? Its not an obligation but sharing is caring .. I bet many people would want to know how to perform face detection over the web. I can assist you in anyway you desire in order to put this tutorial up, including providing a link to your article in my article.
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |
|
 |
hi,
is possible to do the same thing from asp .net (C# code behind) ? I would like to make the face detection executed from a asp .net page.
regards,
Thanks
Sami Eddaikra
|
|
|
|
 |
|
 |
You can run it in server side code, i.e. uploading a picture and then performing face detection. For client side execution you will need .NET Framework on client side and you will need to register the DLL to COM and then use createobject("classname") in ur VBScript/JavaScript..
I hope u got what I said.
Zeeshan.
All Rights Reserved! All Wrongs Revenged!
|
|
|
|
 |