Ask Your Question

Ashwin's profile - activity

2013-02-28 03:19:34 -0600 commented answer Random Vehicle Detection

Hi steven. Thanks for your response. What if, If there is no car for specific amount of time? It should detect all the vehicles, no?

2013-02-28 01:36:09 -0600 asked a question Random Vehicle Detection

Hi all. I want to calculate the average speed of the vehicle that is crossing the camera. So for that I want to detect the time that is taken by Random vehicle to cross the camera. By using that I can calculate the speed. ( speed=distance/timetaken ). Which method should I use? Can I detect a single object randomly?

2013-02-26 09:04:00 -0600 received badge  Editor (source)
2013-02-26 09:01:10 -0600 asked a question Comparing Images by getting Percentage in open cv

Hi Guys.. I want to calculate the Average Speed of the vehicles which is flowing on the Road. Please suggest me if there`s any method using which I can do the same.

2013-02-22 00:56:41 -0600 commented question Face recognition using haartraining

Thanks man.. Now I understand the difficulty of using face recognition with haartraining.

2013-02-21 06:18:16 -0600 received badge  Supporter (source)
2013-02-21 06:18:12 -0600 received badge  Scholar (source)
2013-02-21 06:16:58 -0600 asked a question Face recognition using haartraining

As the title suggests.. I have a doubt that whether we can do face recognition using Haartraining. By taking the required number of positive and negative images.. And by marking The person that we want to be detected from the positive images.. Will it work? Any suggestions Please?

2013-02-12 02:16:07 -0600 asked a question Building haartraining files in open cv

I need to create a .exe file from the training samples that come with open cv(Windows).. So I am working on open cv and inserted all header files and all cpp files(createsamples.cpp, cvboost.cpp, cvhaarclassifier.cpp, cvhaartarining.cpp, cvsamples.cpp, cvcommon.cpp) in the respective folders.. But still when I try to build createsamples.cpp.. I am getting errors that I pasted below..Can anyone help me please?..

1>------ Build started: Project: haart, Configuration: Release Win32------ 
1>Compiling...
1>createsamples.cpp 1>c:\opencv\build\include\opencv2\flann\logger.h(66) : warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 
1> C:\Program Files\Microsoft Visual Studio 9.0\VC\include\stdio.h(237) : see declaration of 'fopen' 
1> C:\documents and settings\ee206922\my documents\visual studio 2008\projects\haart\haart\cvhaartraining.h(130) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. 
1> C:\Program Files\Microsoft Visual Studio 9.0\VC\include\string.h(74) : see declaration of 'strcpy'
1>.\createsamples.cpp(138) : error C2065: 'CV_RANDOM_INVERT' : undeclared identifier
1>.\createsamples.cpp(184) : error C2065: 'CV_RANDOM_INVERT' : undeclared identifier
1>.\createsamples.cpp(203) : error C3861: 'cvCreateTrainingSamples': identifier not found
1>.\createsamples.cpp(214) : error C3861: 'cvCreateTestSamples': identifier not found
1>.\createsamples.cpp(226) : error C3861: 'cvCreateTrainingSamplesFromInfo': identifier not found
1>.\createsamples.cpp(235) : error C3861: 'cvShowVecSamples': identifier not found
1> Build log was saved at "file://c:\Documents and Settings\ee206922\My Documents\Visual Studio 2008\Projects\haart\haart\Release\BuildLog.htm" 1>haart - 6 error(s), 2 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
2013-02-05 08:04:57 -0600 asked a question Haartraining in OPEN CV

I am working on the haartraining project. I have created a text file that contains the object points that we focus on, using Object object marker utility. Now I need to compile createsample.cpp file to create .exe file, as I read it in tutorial. I really dont know how we can do that. Read somewhere that I need to make use of the CMakeLists`s

add_executable(opencv_createsamples cvhaartraining.h createsamples.cpp) set_target_properties(opencv_createsamples PROPERTIES DEBUG_POSTFIX "${OPENCV_DEBUG_POSTFIX}" OUTPUT_NAME "opencv_createsamples")

Can anyone please tell me how I can do that?