Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.71K
1 Posted Topic
array result[2]; int img_x, img_y, pattern_x, pattern_y; bool pattern_not_found, pattern_is_matching; result = [-1, -1]; pattern_not_found = true; for(img_x=0; (pattern_not_found && (img_x <= (imageWidth - patternWidth))); ++img_x) { // <- check if img_x == (imageWidth - patternWidth) or not for(img_y=0; (pattern_not_found && (img_y <= (imageHeight - patternHeight))); ++img_y) { // <- …
The End.
K3haled