public interface PhotoMatcher { /** Finds the best score of the match between the specified foreground and * background images. * @return the score of the match. * @param foreground the photo to match. * @param background the backdrop photo against which to compare. */ public double getMatch(Photo foreground, Photo background); }