Set the sizes for "medium" and "large" thumbnail sizes and require that they be cropped to exact dimensions
// Set "Medium" and "Large" image sizes
update_option('medium_size_w', 350);
update_option('medium_size_h', 175);
update_option('medium_crop', 1); //0 cropped to fit, 1 cropped to exact dimensions
update_option('large_size_w', 715);
update_option('large_size_h', 285);
update_option('large_crop', 1); //0 cropped to fit, 1 cropped to exact dimensions