Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
private static int getSizeBaseScore(int i, int j, android.hardware.Camera.Size size) {
return Math.min(size.height - j, 0) + Math.min(size.width - i, 0);
}
}