Ask Your Question

Aditya108's profile - activity

2015-10-07 14:25:20 -0600 received badge  Notable Question (source)
2014-07-09 20:15:31 -0600 received badge  Popular Question (source)
2013-04-07 07:46:45 -0600 commented question Library file sys/io missing, error occurs while compiling

sys/io.h and dirent.h is also not being included

2013-04-07 07:30:58 -0600 asked a question Library file sys/io missing, error occurs while compiling

Hi, I am trying to compile a program for object marking prior to haarclassfier creation, but one of the header files sys/io.h does not exist in the library, can some alternative be used for that??

2013-03-23 03:24:52 -0600 received badge  Supporter (source)
2013-03-23 03:24:47 -0600 received badge  Scholar (source)
2013-03-23 03:23:16 -0600 commented answer Cascade Classifier for eye detection- errors while compiling

This worked!! But the speed of detection is quite slow..What can we do to optimize it?

2013-03-16 07:11:59 -0600 commented question Cascade Classifier for eye detection- errors while compiling

Thanks for replying! i did link to that library and the code build was complete, but still the output window shows "error loading" meaning that its not able to load the haarcascade xls file. I tried copying the file to the current directory, but still it gives the same error. Am i doing smthing wrong?

2013-03-16 07:07:47 -0600 commented answer Cascade Classifier for eye detection- errors while compiling

Thanks for replying!

i did link to that library and the code build was complete, but still the output window shows "error loading" meaning that its not able to load the haarcascade xls file. I tried copying the file to the current directory, but still it gives the same error.

Am i doing smthing wrong?

2013-03-16 05:58:47 -0600 asked a question Cascade Classifier for eye detection- errors while compiling

I tried to compile the code given at http://docs.opencv.org/doc/tutorials/objdetect/cascade_classifier/cascade_classifier.html#explanation

got the following errors. whats wrong??

1>------ Build started: Project: testprojectone, Configuration: Debug Win32 ------ 1>objectDetection.obj : error LNK2019: unresolved external symbol "public: bool __thiscall cv::CascadeClassifier::load(class std::basic_string<char,struct std::char_traits<char="">,class std::allocator<char> > const &)" (?load@CascadeClassifier@cv@@QAE_NABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function _main 1>objectDetection.obj : error LNK2019: unresolved external symbol "public: virtual void __thiscall cv::CascadeClassifier::detectMultiScale(class cv::Mat const &,class std::vector<class cv::rect_<int="">,class std::allocator<class cv::rect_<int=""> > > &,double,int,int,class cv::Size_<int>,class cv::Size_<int>)" (?detectMultiScale@CascadeClassifier@cv@@UAEXABVMat@2@AAV?$vector@V?$Rect_@H@cv@@V?$allocator@V?$Rect_@H@cv@@@std@@@std@@NHHV?$Size_@H@2@2@Z) referenced in function "void __cdecl detectAndDisplay(class cv::Mat)" (?detectAndDisplay@@YAXVMat@cv@@@Z) 1>objectDetection.obj : error LNK2019: unresolved external symbol "public: __thiscall cv::CascadeClassifier::CascadeClassifier(void)" (??0CascadeClassifier@cv@@QAE@XZ) referenced in function "void __cdecl dynamic initializer for 'face_cascade''(void)" (??__Eface_cascade@@YAXXZ) 1>objectDetection.obj : error LNK2019: unresolved external symbol "public: virtual __thiscall cv::CascadeClassifier::~CascadeClassifier(void)" (??1CascadeClassifier@cv@@UAE@XZ) referenced in function "void __cdecldynamic atexit destructor for 'face_cascade''(void)" (??__Fface_cascade@@YAXXZ) 1>C:\Users\Aditya\Documents\Visual Studio 2010\Projects\testprojectone\Debug\testprojectone.exe : fatal error LNK1120: 4 unresolved externals ========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========