Home | History | Annotate | Download | only in cpp

Lines Matching refs:image

12 Mat image, gray, edge, cedge;
23 image.copyTo(cedge, edge);
36 "{@image |../data/fruits.jpg|input image name}"
46 image = imread(filename, 1);
47 if(image.empty())
49 printf("Cannot read image file: %s\n", filename.c_str());
53 cedge.create(image.size(), image.type());
54 cvtColor(image, gray, COLOR_BGR2GRAY);
62 // Show the image