blob: d78eb44d5a671116d98c3a3b8b5e9f8128d8d529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
/*************************************************************************
* Compilation: javac ResizeDemo.java
* Execution: java ResizeDemo input.png columnsToRemove rowsToRemove
* Dependencies: SeamCarver.java SCUtility.java Picture.java Stopwatch.java
* StdDraw.java
*
*
* Read image from file specified as command line argument. Use SeamCarver
* to remove number of rows and columns specified as command line arguments.
* Show the images in StdDraw and print time elapsed to screen.
*
*************************************************************************/
public class ResizeDemo {
public static void main(String[] args)
{
if (args.length != 3)
{
System.out.println("Usage:\njava ResizeDemo [image filename]"
+ " [num cols to remove] [num rows to remove]");
return;
}
Picture inputImg = new Picture(args[0]);
int removeColumns = Integer.parseInt(args[1]);
int removeRows = Integer.parseInt(args[2]);
System.out.printf("image is %d columns by %d rows\n",
inputImg.width(), inputImg.height());
SeamCarver sc = new SeamCarver(inputImg);
Stopwatch sw = new Stopwatch();
for (int i = 0; i < removeRows; i++) {
int[] horizontalSeam = sc.findHorizontalSeam();
sc.removeHorizontalSeam(horizontalSeam);
}
for (int i = 0; i < removeColumns; i++) {
int[] verticalSeam = sc.findVerticalSeam();
sc.removeVerticalSeam(verticalSeam);
}
Picture outputImg = sc.picture();
System.out.printf("new image size is %d columns by %d rows\n",
sc.width(), sc.height());
System.out.println("Resizing time: " + sw.elapsedTime() + " seconds.");
// inputImg.show();
// outputImg.show();
outputImg.save("out.png");
}
}
|