On Sun, Jul 10, 2011 at 9:45 PM, <sub...@apache.org> wrote: > Author: subash > Date: Mon Jul 11 04:45:10 2011 > New Revision: 1145026 > > URL: http://svn.apache.org/viewvc?rev=1145026&view=rev > Log: > Implemented Generic Face Recognition Test case and changed the slf4j version > from to 1.5.8 and also added a TODO Facebook Face Recognition test case > > Added: > incubator/photark/trunk/photark-face-recognition/src/test/java/org/ > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/ > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/ > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/ > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/ > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/ > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/FacebookFaceTestClient.java > > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/GenericFaceRecognitionTestCase.java > Modified: > incubator/photark/trunk/photark-face-recognition/pom.xml > > Modified: incubator/photark/trunk/photark-face-recognition/pom.xml > URL: > http://svn.apache.org/viewvc/incubator/photark/trunk/photark-face-recognition/pom.xml?rev=1145026&r1=1145025&r2=1145026&view=diff > ============================================================================== > --- incubator/photark/trunk/photark-face-recognition/pom.xml (original) > +++ incubator/photark/trunk/photark-face-recognition/pom.xml Mon Jul 11 > 04:45:10 2011 > @@ -73,10 +73,16 @@ > </dependency> > > <!-- Use Log4J for logging --> > + <dependency> > + <groupId>org.slf4j</groupId> > + <artifactId>slf4j-api</artifactId> > + <version>1.5.8</version> > + </dependency> > + > <dependency> > <groupId>org.slf4j</groupId> > <artifactId>slf4j-log4j12</artifactId> > - <version>1.5.3</version> > + <version>1.5.8</version> > </dependency> > > <dependency> > > Added: > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/FacebookFaceTestClient.java > URL: > http://svn.apache.org/viewvc/incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/FacebookFaceTestClient.java?rev=1145026&view=auto > ============================================================================== > --- > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/FacebookFaceTestClient.java > (added) > +++ > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/FacebookFaceTestClient.java > Mon Jul 11 04:45:10 2011 > @@ -0,0 +1,24 @@ > +/* > + * Licensed to the Apache Software Foundation (ASF) under one > + * or more contributor license agreements. See the NOTICE file > + * distributed with this work for additional information > + * regarding copyright ownership. The ASF licenses this file > + * to you under the Apache License, Version 2.0 (the > + * "License"); you may not use this file except in compliance > + * with the License. You may obtain a copy of the License at > + * > + * http://www.apache.org/licenses/LICENSE-2.0 > + * > + * Unless required by applicable law or agreed to in writing, > + * software distributed under the License is distributed on an > + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY > + * KIND, either express or implied. See the License for the > + * specific language governing permissions and limitations > + * under the License. > + */ > + > +package org.apache.photark.face.facebook.test; > + > +public class FacebookFaceTestClient { > + //TODO > +} > > Added: > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/GenericFaceRecognitionTestCase.java > URL: > http://svn.apache.org/viewvc/incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/GenericFaceRecognitionTestCase.java?rev=1145026&view=auto > ============================================================================== > --- > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/GenericFaceRecognitionTestCase.java > (added) > +++ > incubator/photark/trunk/photark-face-recognition/src/test/java/org/apache/photark/face/facebook/test/GenericFaceRecognitionTestCase.java > Mon Jul 11 04:45:10 2011 > @@ -0,0 +1,68 @@ > +/* > + * Licensed to the Apache Software Foundation (ASF) under one > + * or more contributor license agreements. See the NOTICE file > + * distributed with this work for additional information > + * regarding copyright ownership. The ASF licenses this file > + * to you under the Apache License, Version 2.0 (the > + * "License"); you may not use this file except in compliance > + * with the License. You may obtain a copy of the License at > + * > + * http://www.apache.org/licenses/LICENSE-2.0 > + * > + * Unless required by applicable law or agreed to in writing, > + * software distributed under the License is distributed on an > + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY > + * KIND, either express or implied. See the License for the > + * specific language governing permissions and limitations > + * under the License. > + */ > + > +package org.apache.photark.face.facebook.test; > + > +import com.github.mhendred.face4j.DefaultFaceClient; > +import com.github.mhendred.face4j.exception.FaceClientException; > +import com.github.mhendred.face4j.exception.FaceServerException; > +import com.github.mhendred.face4j.model.Face; > +import com.github.mhendred.face4j.model.Photo; > +import org.apache.photark.face.services.FaceRecognitionService; > +import org.apache.tuscany.sca.data.collection.Entry; > +import org.junit.BeforeClass; > +import org.junit.Ignore; > +import org.junit.Test; > +import org.oasisopen.sca.annotation.Reference; > + > +import java.io.File; > + > +public class GenericFaceRecognitionTestCase { > + > + private DefaultFaceClient defaultFaceClient; > + private String apiKey = ""; > + private String apiSecret = ""; > + > + /* > + This test case shows a generic face recognition app. This includes very > same methods we used in FaceRecognitionService SCA component > + This trains two images of Jenifer Lopez and clearly identifies her among > Shakira and Marc Anthony > + */ > + @Test > + @Ignore > + public void testFaceRecognition() throws FaceServerException, > FaceClientException { > + defaultFaceClient = new DefaultFaceClient(apiKey, apiSecret); > + > + Photo p1 = > defaultFaceClient.detect("https://lh3.googleusercontent.com/-z13PTuGA9mg/Thi6cKAiJVI/AAAAAAAAABs/lTEMvH9in1s/s128/Jennifer-Lopez0045.jpg").get(0); > + Photo p2 = > defaultFaceClient.detect("https://lh5.googleusercontent.com/-K6Jpe-1liwc/Thk0cEGT9cI/AAAAAAAAAB4/9a_84-oMqL8/s128/jennifer-lopez.jpg").get(0); > + > + defaultFaceClient.saveTags(p1.getFace().getTID(), > "jeni...@photark.com", "jenifer"); > + defaultFaceClient.saveTags(p2.getFace().getTID(), > "jeni...@photark.com", "jenifer"); > + > + defaultFaceClient.train("jeni...@photark.com"); > + Photo p = > defaultFaceClient.recognize("https://lh3.googleusercontent.com/-4I_Yn56XwAw/Thi6LIZSutI/AAAAAAAAABo/jOjx2cGgHao/s128/110306_latinjlo_400X400.jpg", > "jeni...@photark.com").get(0); > + > + for (Face f : p.getFaces()) { > + if (f.getGuess() == null) { > + System.out.println(" > Cannot identify Jenifer Lopez :: " + > f.toString()); > + } else { > + System.out.println(" > Identified Jenifer Lopez :: " + > f.toString()); > + } > + } > + } > +} > > >
What's the purpose of this test ? Shouldn't we be using the service interface from the PhotArk FaceRecognition to exercise and also be a sample of the service usage ? -- Luciano Resende http://people.apache.org/~lresende http://twitter.com/lresende1975 http://lresende.blogspot.com/