fixed compile errors in samples

This commit is contained in:
Andrey Morozov 2011-08-11 07:04:27 +00:00
parent bc64567d37
commit c0cd317284

View File

@ -56,9 +56,8 @@ void updateBrightnessContrast( int /*arg*/, void* )
} }
void help() void help()
{ {
printf("\nThis program demonstrates the use of calcHist() -- histogram creation.\n" std::cout << "\nThis program demonstrates the use of calcHist() -- histogram creation.\n"
"Usage: \n" << "Usage: \n" << "demhist [image_name -- Defaults to baboon.jpg]" << std::endl;
"demhist [image_name -- Defaults to baboon.jpg]\n");
} }
const char* keys = const char* keys =
@ -77,7 +76,7 @@ int main( int argc, const char** argv )
image = imread( inputImage, 0 ); image = imread( inputImage, 0 );
if(image.empty()) if(image.empty())
{ {
printf("Cannot read image file: %s\n", inputImage.c_str()); std::cerr << "Cannot read image file: " << inputImage << std::endl;
return -1; return -1;
} }