|
bool | celeste::loadSVMmodel (struct svm_model *&model, std::string &model_file) |
| loads the SVM model from file More...
|
|
void | celeste::destroySVMmodel (struct svm_model *&model) |
| frees the resource of model More...
|
|
void | celeste::prepareCelesteImage (vigra::UInt16RGBImage &rgb, vigra::UInt16RGBImage &luv, int &resize_dimension, double &sizefactor, bool verbose) |
|
void | celeste::prepareGaborImage (vigra::UInt16RGBImage &luv, float **&pixels) |
|
std::vector< double > | celeste::classifySVM (struct svm_model *model, int gNumLocs, int **&gLocations, int width, int height, int vector_length, float *&response, int gRadius, vigra::UInt16RGBImage &luv, bool needsMoreIndex=false) |
|
void | celeste::createGrid (int &gNumLocs, int **&gLocations, int gRadius, int width, int height) |
|
void | celeste::generateMask (vigra::BImage &mask, int &gNumLocs, int **&gLocations, std::vector< double > svm_responses, int gRadius, double threshold) |
|
vigra::BImage * | celeste::getCelesteMask (struct svm_model *model, vigra::UInt16RGBImage &input, int radius, float threshold, int resize_dimension, bool adaptThreshold=false, bool verbose=true) |
| calculates the mask using SVM More...
|
|
HuginBase::UIntSet | celeste::getCelesteControlPoints (struct svm_model *model, vigra::UInt16RGBImage &input, HuginBase::CPointVector cps, int radius, float threshold, int resize_dimension, bool verbose) |
|