Home | History | Annotate | Download | only in filters
      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         setFilterClass(ImageFilterRedEye.class);
     32         setOverlayId(R.drawable.photoeditor_effect_redeye);
     33         setOverlayOnly(true);
     34     }
     35 
     36     public void addRect(RectF rect, RectF bounds) {
     37         Vector<RedEyeCandidate> intersects = new Vector<RedEyeCandidate>();
     38         for (int i = 0; i < getCandidates().size(); i++) {
     39             RedEyeCandidate r = (RedEyeCandidate) getCandidate(i);
     40             if (r.intersect(rect)) {
     41                 intersects.add(r);
     42             }
     43         }
     44         for (int i = 0; i < intersects.size(); i++) {
     45             RedEyeCandidate r = intersects.elementAt(i);
     46             rect.union(r.mRect);
     47             bounds.union(r.mBounds);
     48             removeCandidate(r);
     49         }
     50         addCandidate(new RedEyeCandidate(rect, bounds));
     51     }
     52 
     53 }
     54