OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:img_display
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
MatchTemplate_Demo.cpp
57
Mat
img_display
;
local
58
img.copyTo(
img_display
);
84
rectangle(
img_display
, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );
87
imshow( image_window,
img_display
);
/external/opencv3/doc/tutorials/imgproc/histograms/template_matching/
template_matching.markdown
139
Mat
img_display
;
140
img.copyTo(
img_display
);
190
rectangle(
img_display
, matchLoc, Point( matchLoc.x + templ.cols , matchLoc.y + templ.rows ), Scalar::all(0), 2, 8, 0 );
193
imshow( image_window,
img_display
);
Completed in 74 milliseconds