/* Copyright (c) 2011-2014, Mathieu Labbe - IntRoLab - Universite de Sherbrooke All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the Universite de Sherbrooke nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include "find_object/MainWindow.h" #include "find_object/Settings.h" #include "find_object/FindObject.h" #include "find_object/Camera.h" #include "find_object/TcpServer.h" #include "find_object/JsonWriter.h" #include "find_object/utilite/ULogger.h" bool running = true; #ifdef WIN32 #include BOOL WINAPI my_handler(DWORD signal) { if (signal == CTRL_C_EVENT) { printf("\nCtrl-C caught! Quitting application...\n"); QCoreApplication::quit(); } return TRUE; running = false; } #else #include void my_handler(int s) { printf("\nCtrl-C caught! Quitting application...\n"); QCoreApplication::quit(); running = false; } inline void Sleep(unsigned int ms) { struct timespec req; struct timespec rem; req.tv_sec = ms / 1000; req.tv_nsec = (ms - req.tv_sec * 1000) * 1000 * 1000; nanosleep (&req, &rem); } #endif void setupQuitSignal() { // Catch ctrl-c to close Qt #ifdef WIN32 if (!SetConsoleCtrlHandler(my_handler, TRUE)) { UERROR("Could not set control (ctrl-c) handler"); } #else struct sigaction sigIntHandler; sigIntHandler.sa_handler = my_handler; sigemptyset(&sigIntHandler.sa_mask); sigIntHandler.sa_flags = 0; sigaction(SIGINT, &sigIntHandler, NULL); #endif } void showUsage() { printf("\nUsage:\n" #ifdef WIN32 " Find-Object.exe [options]\n" #else " find_object [options]\n" #endif "Options:\n" " --console Don't use the GUI (by default the camera will be\n" " started automatically). Option --objects must also be\n" " used with valid objects.\n" " --session \"path\" Path to a session to load (*.bin).\n" " --object \"path\" Path to an object to detect.\n" " --objects \"path\" Directory of the objects to detect (--object is ignored).\n" " --config \"path\" Path to configuration file (default: %s).\n" " If set to \"\", default parameters are used " " without saving modified parameters on closing.\n" " --scene \"path\" Path to a scene image file.\n" " --debug Show debug log.\n" " --debug-time Show debug log with time.\n" " --params Show all parameters.\n" " --defaults Use default parameters (--config is ignored).\n" " --My/Parameter \"value\" Set find-Object's parameter (look --params for parameters' name).\n" " It will override the one in --config. Example to set 4 threads:\n" " $ find_object --General/threads 4\n" " --json \"path\" Path to an output JSON file (only in --console mode with --scene).\n" " --help Show usage.\n" , find_object::Settings::iniDefaultPath().toStdString().c_str()); exit(-1); } int main(int argc, char* argv[]) { ULogger::setType(ULogger::kTypeConsole); ULogger::setLevel(ULogger::kInfo); ULogger::setPrintWhere(false); ULogger::setPrintTime(false); ////////////////////////// // parse options BEGIN ////////////////////////// bool guiMode = true; QString sessionPath = ""; QString objectsPath = ""; QString objectPath = ""; QString scenePath = ""; QString configPath = find_object::Settings::iniDefaultPath(); QString jsonPath; find_object::ParametersMap customParameters; for(int i=1; i 2) { //strip the "--" name.remove(0, 2); if(parameters.contains(name)) { ++i; if(i < argc) { customParameters.insert(name, argv[i]); } else { showUsage(); } continue; } } UERROR("Unrecognized option : %s", argv[i]); showUsage(); } UINFO("Options:"); UINFO(" GUI mode = %s", guiMode?"true":"false"); if(!sessionPath.isEmpty()) { UINFO(" Session path: \"%s\"", sessionPath.toStdString().c_str()); } else if(!objectsPath.isEmpty()) { UINFO(" Objects path: \"%s\"", objectsPath.toStdString().c_str()); } else if(!objectPath.isEmpty()) { UINFO(" Object path: \"%s\"", objectPath.toStdString().c_str()); } UINFO(" Scene path: \"%s\"", scenePath.toStdString().c_str()); if(!guiMode) { UINFO(" JSON path: \"%s\"", jsonPath.toStdString().c_str()); } UINFO(" Settings path: \"%s\"", configPath.toStdString().c_str()); for(find_object::ParametersMap::iterator iter= customParameters.begin(); iter!=customParameters.end(); ++iter) { UINFO(" Param \"%s\"=\"%s\"", iter.key().toStdString().c_str(), iter.value().toString().toStdString().c_str()); } ////////////////////////// // parse options END ////////////////////////// // Load settings, should be loaded before creating other objects find_object::Settings::init(configPath); // Override custom parameters: for(find_object::ParametersMap::iterator iter= customParameters.begin(); iter!=customParameters.end(); ++iter) { find_object::Settings::setParameter(iter.key(), iter.value()); } // Create FindObject find_object::FindObject * findObject = new find_object::FindObject(); // Load objects if path is set int objectsLoaded = 0; if(!sessionPath.isEmpty()) { if(!findObject->loadSession(sessionPath)) { UERROR("Could not load session \"%s\"", sessionPath.toStdString().c_str()); } else { objectsLoaded = findObject->objects().size(); } } else if(!objectsPath.isEmpty()) { objectsLoaded = findObject->loadObjects(objectsPath); if(!objectsLoaded) { UWARN("No objects loaded from \"%s\"", objectsPath.toStdString().c_str()); } } else if(!objectPath.isEmpty()) { const find_object::ObjSignature * obj = findObject->addObject(objectPath); if(obj) { ++objectsLoaded; findObject->updateObjects(); findObject->updateVocabulary(); } else { UWARN("No object loaded from \"%s\"", objectsPath.toStdString().c_str()); } } cv::Mat scene; if(!scenePath.isEmpty()) { scene = cv::imread(scenePath.toStdString()); if(scene.empty()) { UERROR("Failed to load scene \"%s\"", scenePath.toStdString().c_str()); } } if(guiMode) { QApplication app(argc, argv); find_object::MainWindow mainWindow(findObject, 0); // ownership transfered app.connect( &app, SIGNAL( lastWindowClosed() ), &app, SLOT( quit() ) ); mainWindow.show(); if(!scene.empty()) { mainWindow.update(scene); } app.exec(); // Save settings find_object::Settings::saveSettings(); } else { if(objectsLoaded == 0) { UERROR("In console mode, at least one object must be loaded! See -console option."); delete findObject; showUsage(); } QCoreApplication app(argc, argv); if(!scene.empty()) { // process the scene and exit QTime time; time.start(); find_object::DetectionInfo info; findObject->detect(scene, info); if(info.objDetected_.size() > 1) { UINFO("%d objects detected! (%d ms)", (int)info.objDetected_.size(), time.elapsed()); } else if(info.objDetected_.size() == 1) { UINFO("Object %d detected! (%d ms)", (int)info.objDetected_.begin().key(), time.elapsed()); } else if(find_object::Settings::getGeneral_sendNoObjDetectedEvents()) { UINFO("No objects detected. (%d ms)", time.elapsed()); } if(!jsonPath.isEmpty()) { find_object::JsonWriter::write(info, jsonPath); UINFO("JSON written to \"%s\"", jsonPath.toStdString().c_str()); } } else { find_object::Camera camera; find_object::TcpServer tcpServer(find_object::Settings::getGeneral_port()); UINFO("Detection sent on port: %d (IP=%s)", tcpServer.getPort(), tcpServer.getHostAddress().toString().toStdString().c_str()); // connect stuff: // [FindObject] ---ObjectsDetected---> [TcpServer] QObject::connect(findObject, SIGNAL(objectsFound(find_object::DetectionInfo)), &tcpServer, SLOT(publishDetectionInfo(find_object::DetectionInfo))); // [Camera] ---Image---> [FindObject] QObject::connect(&camera, SIGNAL(imageReceived(const cv::Mat &)), findObject, SLOT(detect(const cv::Mat &))); QObject::connect(&camera, SIGNAL(finished()), &app, SLOT(quit())); //connect services QObject::connect(&tcpServer, SIGNAL(addObject(const cv::Mat &, int, const QString &)), findObject, SLOT(addObjectAndUpdate(const cv::Mat &, int, const QString &))); QObject::connect(&tcpServer, SIGNAL(removeObject(int)), findObject, SLOT(removeObjectAndUpdate(int))); //use camera in settings setupQuitSignal(); // start processing! while(running && !camera.start()) { UERROR("Camera initialization failed!"); running = false; } if(running) { app.exec(); if(!sessionPath.isEmpty() && findObject->isSessionModified()) { UINFO("The session has been modified, updating the session file..."); if(findObject->saveSession(sessionPath)) { UINFO("Session \"%s\" successfully saved (%d objects)!", sessionPath.toStdString().c_str(), findObject->objects().size()); } } } // cleanup camera.stop(); tcpServer.close(); } delete findObject; } return 0; }