123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302 |
- /**
- * @file LFWriteCache.cpp
- * @brief read local features from file
- * @author Erik Rodner, Alexander Freytag
- * @date 02/14/2008
- */
- #include "core/vector/VectorT.h"
- #include "core/vector/MatrixT.h"
- #include "core/image/ImageT.h"
- // STL includes
- #include <iostream>
- #include <fstream>
- //
- #include <sys/stat.h>
- #include <sys/types.h>
- // nice-core includes
- #include <core/basics/StringTools.h>
- // nice-vislearning includes
- #include <vislearning/baselib/Globals.h>
- //
- #include "vislearning/features/localfeatures/GenericLFSelection.h"
- #include "vislearning/features/localfeatures/LFWriteCache.h"
- using namespace OBJREC;
- using namespace std;
- using namespace NICE;
- ///////////////////// ///////////////////// /////////////////////
- // PROTECTED METHODS
- ///////////////////// ///////////////////// ////////////////
- void LFWriteCache::setDescFormat ( const std::string & _descFormat_s )
- {
- if ( _descFormat_s == "binary_double" )
- this->descFormat = VVector::FILEFORMAT_BINARY_DOUBLE;
- else if ( _descFormat_s == "binary_uchar" )
- this->descFormat = VVector::FILEFORMAT_BINARY_CHAR;
- else if ( _descFormat_s == "text_line" )
- this->descFormat = VVector::FILEFORMAT_LINE;
- else if ( ( _descFormat_s == "text_nice" ) || ( _descFormat_s == "text_ice" ) )
- this->descFormat = VVector::FILEFORMAT_NICE;
- else
- fthrow ( Exception, "Format " << _descFormat_s << " is unknown." );
- }
- ///////////////////// ///////////////////// /////////////////////
- // CONSTRUCTORS / DESTRUCTORS
- ///////////////////// ///////////////////// /////////////////
- LFWriteCache::LFWriteCache ()
- {
- this->cachedir = "";
- this->cachemode = Globals::getCacheMode ( "cat" );
- std::string descFormat_s = "binary_double";
- this->setDescFormat ( descFormat_s );
- }
- LFWriteCache::LFWriteCache ( const Config *_conf,
- const std::string & _confSection
- )
- {
- this->initFromConfig( _conf, _confSection );
- }
- LFWriteCache::LFWriteCache ( const Config *conf,
- LocalFeatureRepresentation *_lfrep,
- const std::string & _section ) : lfrep ( _lfrep )
- {
- this->cachedir = conf->gS ( _section, "root" );
- this->cachemode = Globals::getCacheMode ( conf->gS ( _section, "mode", "cat" ) );
- std::string descFormat_s = conf->gS ( _section, "descriptor_format", "binary_double" );
- this->setDescFormat ( descFormat_s );
- }
- LFWriteCache::~LFWriteCache()
- {
- if ( this->lfrep != NULL )
- {
- delete this->lfrep;
- this->lfrep = NULL;
- }
- }
- void LFWriteCache::initFromConfig(const NICE::Config* _conf, const std::string& _confSection)
- {
- //srand(time(NULL));
- this->cachedir = _conf->gS ( _confSection, "root" );
- this->cachemode = Globals::getCacheMode ( _conf->gS ( _confSection, "mode", "cat" ) );
- std::string descFormat_s = _conf->gS ( _confSection, "descriptor_format", "binary_double" );
- this->setDescFormat ( descFormat_s );
-
- if ( this->lfrep != NULL )
- {
- delete this->lfrep;
- this->lfrep = NULL;
- }
- this->lfrep = GenericLFSelection::selectLocalFeatureRep ( _conf, _confSection );
- }
- ///////////////////// ///////////////////// /////////////////////
- // FEATURE STUFF
- ///////////////////// ///////////////////// /////////////////
- int LFWriteCache::getDescSize () const
- {
- return lfrep->getDescSize();
- }
- int LFWriteCache::extractFeatures ( const NICE::Image & img,
- VVector & features,
- VVector & positions ) const
- {
- std::string filename = Globals::getCacheFilename ( cachedir, cachemode );
- int ret = lfrep->extractFeatures ( img, features, positions );
- std::string filename_desc = filename + ".desc";
- std::string filename_pos = filename + ".key";
- struct stat dummy;
- if ( stat ( filename_desc.c_str(), &dummy ) < 0 )
- {
- fprintf ( stderr, "features: %d, positions: %d\n", ( int ) features.size(),
- ( int ) positions.size() );
- if ( features.size() > 0 )
- fprintf ( stderr, "feature dimension: %d %d\n", features[0].size(), lfrep->getDescSize() );
- features.save ( filename_desc, descFormat );
- positions.save ( filename_pos, VVector::FILEFORMAT_LINE );
- } else {
- fprintf ( stderr, "description file %s exists !\n", filename_desc.c_str() );
- }
- return ret;
- }
- int LFWriteCache::extractFeatures ( const NICE::ColorImage & img,
- VVector & features,
- VVector & positions ) const
- {
- std::string filename = Globals::getCacheFilename ( cachedir, cachemode );
- int ret = lfrep->extractFeatures ( img, features, positions );
- std::string filename_desc = filename + ".desc";
- std::string filename_pos = filename + ".key";
- struct stat dummy;
- if ( stat ( filename_desc.c_str(), &dummy ) < 0 )
- {
- fprintf ( stderr, "features: %d, positions: %d\n", ( int ) features.size(),
- ( int ) positions.size() );
- if ( features.size() > 0 )
- fprintf ( stderr, "feature dimension: %d %d\n", features[0].size(), lfrep->getDescSize() );
- features.save ( filename_desc, descFormat );
- positions.save ( filename_pos, VVector::FILEFORMAT_LINE );
- }
- else
- {
- fprintf ( stderr, "description file %s exists !\n", filename_desc.c_str() );
- }
- return ret;
- }
- void LFWriteCache::visualize ( NICE::Image & img,
- const NICE::Vector & feature ) const
- {
- this->lfrep->visualize ( img, feature );
- }
- void LFWriteCache::visualizeFeatures ( NICE::Image & mark,
- const VVector & positions,
- size_t color ) const
- {
- this->lfrep->visualizeFeatures ( mark, positions, color );
- }
- ///////////////////// INTERFACE PERSISTENT /////////////////////
- // interface specific methods for store and restore
- ///////////////////// INTERFACE PERSISTENT /////////////////////
- void LFWriteCache::restore ( std::istream & is, int format )
- {
- //delete everything we knew so far...
- this->clear();
-
-
- if ( is.good() )
- {
-
- std::string tmp;
- is >> tmp; //class name
-
- if ( ! this->isStartTag( tmp, "LFWriteCache" ) )
- {
- std::cerr << " WARNING - attempt to restore LFWriteCache, but start flag " << tmp << " does not match! Aborting... " << std::endl;
- throw;
- }
-
- bool b_endOfBlock ( false ) ;
-
- while ( !b_endOfBlock )
- {
- is >> tmp; // start of block
-
- if ( this->isEndTag( tmp, "LFWriteCache" ) )
- {
- b_endOfBlock = true;
- continue;
- }
-
- tmp = this->removeStartTag ( tmp );
-
- if ( tmp.compare("lfrep") == 0 )
- {
- //TODO generic restore function
- this->lfrep->restore ( is );
- is >> tmp; // end of block
- tmp = this->removeEndTag ( tmp );
- }
- else if ( tmp.compare("cachedir") == 0 )
- {
- is >> this->cachedir;
- is >> tmp; // end of block
- tmp = this->removeEndTag ( tmp );
- }
- else if ( tmp.compare("descFormat") == 0 )
- {
- is >> this->descFormat;
- is >> tmp; // end of block
- tmp = this->removeEndTag ( tmp );
- }
- else if ( tmp.compare("cachemode") == 0 )
- {
- is >> this->cachemode;
- is >> tmp; // end of block
- tmp = this->removeEndTag ( tmp );
- }
- else
- {
- std::cerr << "WARNING -- unexpected LFWriteCache object -- " << tmp << " -- for restoration... aborting" << std::endl;
- throw;
- }
- }
- }
- else
- {
- std::cerr << "LFWriteCache::restore -- InStream not initialized - restoring not possible!" << std::endl;
- throw;
- }
- }
- void LFWriteCache::store ( std::ostream & os, int format ) const
- {
- if (os.good())
- {
- // show starting point
- os << this->createStartTag( "LFWriteCache" ) << std::endl;
-
- os << this->createStartTag( "lfrep" ) << std::endl;
- this->lfrep->store ( os );
- os << this->createEndTag( "lfrep" ) << std::endl;
- os << this->createStartTag( "cachedir" ) << std::endl;
- os << this->cachedir << std::endl;
- os << this->createEndTag( "cachedir" ) << std::endl;
-
- os << this->createStartTag( "descFormat" ) << std::endl;
- os << this->descFormat << std::endl;
- os << this->createEndTag( "descFormat" ) << std::endl;
-
- os << this->createStartTag( "cachemode" ) << std::endl;
- os << this->cachemode << std::endl;
- os << this->createEndTag( "cachemode" ) << std::endl;
-
- // done
- os << this->createEndTag( "LFWriteCache" ) << std::endl;
- }
- else
- {
- std::cerr << "OutStream not initialized - storing not possible!" << std::endl;
- }
- }
- void LFWriteCache::clear ()
- {
- if ( this->lfrep != NULL )
- {
- delete this->lfrep;
- this->lfrep = NULL;
- }
- }
|