added default detector for winSize(64,128) for hog on gpu

This commit is contained in:
Anatoly Baksheev
2010-11-16 12:33:19 +00:00
parent be54f1237a
commit edff674105
4 changed files with 11 additions and 2 deletions

View File

@@ -528,8 +528,8 @@ CV_IMPL const char* cvErrorStr( int status )
case CV_StsBadMemBlock : return "Memory block has been corrupted";
case CV_StsAssert : return "Assertion failed";
case CV_GpuNotSupported : return "No GPU support";
case CV_GpuApiCallError : return "GPU API error";
case CV_GpuNppCallError : return "NPP API error";
case CV_GpuApiCallError : return "Gpu Api call";
case CV_GpuNppCallError : return "Npp Api call";
};
sprintf(buf, "Unknown %s code %d", status >= 0 ? "status":"error", status);