OSDN Git Service

Move classes to pipeline package
[android-x86/packages-apps-Gallery2.git] / src / com / android / gallery3d / filtershow / filters / FilterRedEyeRepresentation.java
1 /*
2  * Copyright (C) 2013 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.android.gallery3d.filtershow.filters;
18
19 import android.graphics.RectF;
20
21 import com.android.gallery3d.R;
22 import com.android.gallery3d.filtershow.editors.EditorRedEye;
23
24 import java.util.Vector;
25
26 public class FilterRedEyeRepresentation extends FilterPointRepresentation {
27     private static final String LOGTAG = "FilterRedEyeRepresentation";
28
29     public FilterRedEyeRepresentation() {
30         super("RedEye",R.string.redeye,EditorRedEye.ID);
31         setSerializationName("REDEYE");
32         setFilterClass(ImageFilterRedEye.class);
33         setOverlayId(R.drawable.photoeditor_effect_redeye);
34         setOverlayOnly(true);
35     }
36
37     public void addRect(RectF rect, RectF bounds) {
38         Vector<RedEyeCandidate> intersects = new Vector<RedEyeCandidate>();
39         for (int i = 0; i < getCandidates().size(); i++) {
40             RedEyeCandidate r = (RedEyeCandidate) getCandidate(i);
41             if (r.intersect(rect)) {
42                 intersects.add(r);
43             }
44         }
45         for (int i = 0; i < intersects.size(); i++) {
46             RedEyeCandidate r = intersects.elementAt(i);
47             rect.union(r.mRect);
48             bounds.union(r.mBounds);
49             removeCandidate(r);
50         }
51         addCandidate(new RedEyeCandidate(rect, bounds));
52     }
53
54 }