You are viewing a plain text version of this content. The canonical link for it is here.
Posted to photark-dev@incubator.apache.org by "Subash Chaturanga (JIRA)" <ji...@apache.org> on 2011/04/07 14:23:05 UTC

[jira] [Created] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Adding Face Recognition functionality to PhotArk
------------------------------------------------

                 Key: PHOTARK-73
                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
             Project: PhotArk
          Issue Type: New Feature
          Components: PhoatArk Services
         Environment: UNIX
            Reporter: Subash Chaturanga


This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: basic_interface_def.patch

Here this has a rough interface definition on FaceRecognitionService and FacebookFaceRecognition SCA  component interfaces.

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Luciano Resende (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13035475#comment-13035475 ] 

Luciano Resende commented on PHOTARK-73:
----------------------------------------

Couple comments
   - Javadocs would help understand some of the operations/parameters
   - These should be stateless services, thus oAuth credentials should not be passed in a "initialization" operation, but somewhat embedded per operation
   - How about making this it's own module, instead of adding it to photark ?
   - Also, when it's on it's own module, feel free to committ, it's better to review from svn :) 

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Luciano Resende (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13036572#comment-13036572 ] 

Luciano Resende commented on PHOTARK-73:
----------------------------------------

My issue is, even tough we have a fine-grained statefull api, we can still make a stateless service :)

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Commented] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13036813#comment-13036813 ] 

Subash Chaturanga commented on PHOTARK-73:
------------------------------------------

+1 for that. You are quite right. The service should be stateless. My only concern is that the FaceRecognitionService impl will suppose to function on top of org.face4j.DefaultFaceClient class where, to obtain one instance of it, we have to provide a face.com registered an api_key and an api_secret. So for one account they offer very limited no of keys. So instance creation per operation may not be possible. But as you said, we can make the service impl such that its Stateless. These days I am doing a small research of the possibility of doing that with one instance. I think that is what you also meant. Please correct me if I am wrong. And will commit after adding a separate module for face recognition. :-)
   

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: patch1_extendedFaceRecognitionService.patch

Here I have extended the scope of FaceRecognitionService interface where it acts in a more generic way. 

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: addedFaceModule.patch

This patch contains the addition of photark-face-recognition module for photark trunk. 

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: addedFaceModule.patch, basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: issuesWithServices.patch

Here is the patch which have some unexpected issues with the face services

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: Screenshot-1.png, Screenshot-2.png, addedFaceModule.patch, basic_interface_def.patch, issuesWithServices.patch, patch1_extendedFaceRecognitionService.patch, scatried.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] [Commented] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13035560#comment-13035560 ] 

Subash Chaturanga commented on PHOTARK-73:
------------------------------------------

Yes I was also thinking on creating a separate module for this. Hope thats what you also meant.

Actually the implementation of this interface going to be some what a wrapper of org.face4j.DefaultFaceClient class. But as we do have the method  DefaultFaceClient.setFacebookOauth2(fbUserID, Oauth2) , it work based on the current credential. So it wont be an issue I guess . And also as we do train(), detect() saveTags(), getTags() based on "uids" one DefaultFaceClient instance will be fine.(but i will find out the possibility of this by looking in to its code or contacting the author of this client) .   




> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: scatried.patch

Hi , This patch has what I have tried to make a tuscany SCA component and how it can be accessed from the gallery. But I am getting a class not found error for the interface I defined. If you examine(or apply) this patch you can understand changes I have done to web.composite.xml and sca-contribution.xml and constant.js specially. I have done created SCA components successfully before and here I have done the pretty same. But I could not figure out the exact problem. If anyone identified the issue,  please update this JIRA. I am still looking what went wrong :(    

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: addedFaceModule.patch, basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch, scatried.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] [Updated] (PHOTARK-73) Adding Face Recognition functionality to PhotArk

Posted by "Subash Chaturanga (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/PHOTARK-73?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Subash Chaturanga updated PHOTARK-73:
-------------------------------------

    Attachment: Screenshot-1.png
                Screenshot-2.png

This is the UI panel which gives users to train their friend's images. Here I have created a seperate html called face.html(Screenshot-2.png)  which is directed from a link through gallery(Screenshot-1.png) .

> Adding Face Recognition functionality to PhotArk
> ------------------------------------------------
>
>                 Key: PHOTARK-73
>                 URL: https://issues.apache.org/jira/browse/PHOTARK-73
>             Project: PhotArk
>          Issue Type: New Feature
>          Components: PhoatArk Services
>         Environment: UNIX
>            Reporter: Subash Chaturanga
>              Labels: gsoc, gsoc2011
>         Attachments: Screenshot-1.png, Screenshot-2.png, addedFaceModule.patch, basic_interface_def.patch, patch1_extendedFaceRecognitionService.patch, scatried.patch
>
>
> This is a new feature for Photark where this face recognition engine can be used to enhance and extend the scope of gallery features. So basically after implementing this feature there will be a generic face recognition framework which can be used by other PhotArk face recognition related applications and a Facebook friend finder (later explain in detail) application using the above framework.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira