Added error handling in latentsvmdetect sample

pull/13383/head
Alexey Polovinkin 15 years ago
parent f678c8f07b
commit ba88b2ee54
  1. 1
      modules/objdetect/src/_lsvm_error.h
  2. 4
      modules/objdetect/src/latentsvmdetector.cpp
  3. 9
      modules/objdetect/src/lsvmparser.cpp
  4. 0
      samples/c/cat.jpg
  5. 20
      samples/c/latentsvmdetect.cpp

@ -12,5 +12,6 @@
#define FILTER_OUT_OF_BOUNDARIES -7
#define FFT_OK 2
#define FFT_ERROR -8
#define LSVM_PARSER_FILE_NOT_FOUND -9
#endif

@ -22,8 +22,10 @@ CvLatentSvmDetector* cvLoadLatentSvmDetector(const char* filename)
int* kPartFilters = 0;
float* b = 0;
float scoreThreshold = 0.f;
int err_code = 0;
loadModel(filename, &filters, &kFilters, &kComponents, &kPartFilters, &b, &scoreThreshold);
err_code = loadModel(filename, &filters, &kFilters, &kComponents, &kPartFilters, &b, &scoreThreshold);
if (err_code != LATENT_SVM_OK) return 0;
detector = (CvLatentSvmDetector*)malloc(sizeof(CvLatentSvmDetector));
detector->filters = filters;

@ -2,6 +2,7 @@
#include <stdio.h>
#include "string.h"
#include "_lsvmparser.h"
#include "_lsvm_error.h"
int isMODEL (char *str){
char stag [] = "<Model>";
@ -736,7 +737,7 @@ int LSVMparser(const char * filename, filterObject *** model, int *last, int *ma
xmlf = fopen(filename, "rb");
if(xmlf == NULL){
return -1;
return LSVM_PARSER_FILE_NOT_FOUND;
}
i = 0;
@ -767,7 +768,7 @@ int LSVMparser(const char * filename, filterObject *** model, int *last, int *ma
}
}
}
return 0;
return LATENT_SVM_OK;
}
int loadModel(
@ -789,8 +790,8 @@ int loadModel(
//printf("start_parse\n\n");
err = LSVMparser(modelPath, filters, &last, &max, &comp, b, &count, &score);
if(err != 0){
return -1;
if(err != LATENT_SVM_OK){
return err;
}
(*kFilters) = last + 1;
(*kComponents) = count;

Before

Width:  |  Height:  |  Size: 64 KiB

After

Width:  |  Height:  |  Size: 64 KiB

@ -6,7 +6,7 @@
using namespace cv;
const char* model_filename = "cat.xml";
const char* image_filename = "000028.jpg";
const char* image_filename = "cat.jpg";
void detect_and_draw_objects( IplImage* image, CvLatentSvmDetector* detector)
{
@ -35,8 +35,26 @@ void detect_and_draw_objects( IplImage* image, CvLatentSvmDetector* detector)
int main(int argc, char* argv[])
{
if (argc > 2)
{
image_filename = argv[1];
model_filename = argv[2];
}
IplImage* image = cvLoadImage(image_filename);
if (!image)
{
printf( "Unable to load the image\n"
"Pass it as the first parameter: latentsvmdetect <path to cat.jpg> <path to cat.xml>\n" );
return -1;
}
CvLatentSvmDetector* detector = cvLoadLatentSvmDetector(model_filename);
if (!detector)
{
printf( "Unable to load the model\n"
"Pass it as the second parameter: latentsvmdetect <path to cat.jpg> <path to cat.xml>\n" );
cvReleaseImage( &image );
return -1;
}
detect_and_draw_objects( image, detector );
cvNamedWindow( "test", 0 );
cvShowImage( "test", image );

Loading…
Cancel
Save