Posts
 
Reputation
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
~9K People Reached
Favorite Forums
Favorite Tags
java x 1
c x 1

1 Posted Topic

Member Avatar for makmuhefe

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) { // <- …

Member Avatar for K3haled
0
9K

The End.