Limit, filter, or sort images in the Faces pool?

Hi.  How can I limit, filter, or sort the images Aperture presents when "Confirm Faces" is clicked in Faces view of a named Face?
I would like to either:
. Limit the universe of presented images with unnamed faces to those from specific Projects; or
. Filter the images presented (by, for example, year, or Project Path, or anything else helpful); or
. Sort the images by some other criteria than Aperture's (presumably) "most alike" measurement.
Thanks!
Message was edited by: Kirby Krieger

Shweeet! I love people who know things!
Thanks for saving me a ton of pain.

Similar Messages

  • How to remove "Blue filter" from multiple images in the History Panel

    I am using Lightroom 4.3 on Windows 7 pc.  I have a collection with approximately 650 images.  I was working in the collection and had all the images selected.  Somehow I inadvertently must have hit a keyboard shortcut that effected all the images.  All of the images are negatively effected and they now look terrible.  When I go to the History Panel, all the images have "blue filter" as their most recent entry.  If I select one image and go back to the step before the "blue filter" everything looks fine  again.  My problem is I have this effect in 650 images.  When I try and do the change in one image and then synch to the rest, I don't know what box to check to remove this "blue filter" that has been added to all the images.  I know I can do them one by one, but with 650 images, it's a long and tedious process.  Any way I can remove the "blue filter" from multiple images in a collection?
    Thanks,
    Matthew Kraus

    If you’ve just done it, then an Undo operation would reverse things on all the images, I think.  But if it took you a while to see the problem, then you might have done something to cancel the undoability.
    Isn’t Blue Filter a built in LR preset that modifies the HSL settings:  http://kb2.adobe.com/community/publishing/924/cpsid_92473.html
    Open the HSL panel and step back into History on one of the affected images so the effect of the Blue Filter preset has been undone and notice what HSL sliders change, and then if the 650 images DON’T already have any HSL adjustments you should be able to sync JUST the pre-Blue-Filter HSL adjustments (perhaps all zeros) to the other 650 images.

  • Confusion in FILTER and SORT operations in the execution plan

    Hi
    I have been working on tuning of a sql query:
    SELECT SUM(DECODE(CR_FLG, 'C', NVL(TOT_AMT, 0), 0)),
           SUM(DECODE(CR_FLG, 'C', 1, 0)),
           SUM(DECODE(CR_FLG, 'R', NVL(TOT_AMT, 0), 0)),
           SUM(DECODE(CR_FLG, 'R', 1, 0)),
           SUM(DECODE(CR_FLG, 'C', NVL(TOT_AMT, 0), -1 * NVL(TOT_AMT, 0))),
           SUM(1)
         FROM TS_TEST
        WHERE SMY_DT BETWEEN TO_DATE(:1, 'DD-MM-YYYY') AND
           TO_DATE(:1, 'DD-MM-YYYY');Table TS_TEST is range partitioned on smy_dt and there is an index on smy_dt column. Explain plan of the query is:
    SQL> explain plan for  SELECT SUM(DECODE(CR_FLG, 'C', NVL(TOT_AMT, 0), 0)),
      2         SUM(DECODE(CR_FLG, 'C', 1, 0)),
      3         SUM(DECODE(CR_FLG, 'R', NVL(TOT_AMT, 0), 0)),
      4         SUM(DECODE(CR_FLG, 'R', 1, 0)),
      5         SUM(DECODE(CR_FLG, 'C', NVL(TOT_AMT, 0), -1 * NVL(TOT_AMT, 0))),
      6         SUM(1)
      7    FROM TS_TEST
      8   WHERE SMY_DT BETWEEN TO_DATE(:1, 'DD-MM-YYYY') AND
      9         TO_DATE(:1, 'DD-MM-YYYY');
    Explained.
    SQL> @E
    PLAN_TABLE_OUTPUT
    Plan hash value: 766961720
    | Id  | Operation                            | Name                | Rows  | Bytes | Cost (%CPU)| Time     | Pstart| Pstop |
    |   0 | SELECT STATEMENT                     |                     |     1 |    14 | 15614   (1)| 00:03:08 |       |       |
    |   1 |  SORT AGGREGATE                      |                     |     1 |    14 |            |             |       |       |
    |*  2 |   FILTER                             |                     |       |       |            |          |       |       |
    |   3 |    TABLE ACCESS BY GLOBAL INDEX ROWID| T_TEST             | 79772 |  1090K| 15614   (1)| 00:03:08 | ROWID | ROWID |
    |*  4 |     INDEX RANGE SCAN                 | I_SMY_DT         |   143K|       |   442   (1)| 00:00:06 |       |       |
    Predicate Information (identified by operation id):
       2 - filter(TO_DATE(:1,'DD-MM-YYYY')<=TO_DATE(:1,'DD-MM-YYYY'))
       4 - access("SMY_DT">=TO_DATE(:1,'DD-MM-YYYY') AND "SMY_DT"<=TO_DATE(:1,'DD-MM-YYYY'))
    17 rows selected.
    SQL>I am not able to understand the FILTER & SORT operations. As there is an index on SMY_DT column, so index range scan is fine. But why a FILTER (Step no 2) and SORT (Step no 1) operation after that ?
    Oracle version is 10.2.0.3 on AIX 5.3 64 bit.
    Any other information required please let me know.
    Regards,
    Amardeep Sidhu

    Sort aggregate tells you that there was performed an aggregate operation which returns one row, in opposite to sort order by or hash group by which indicates you have grouping, and there more than one row can be returned.
    SQL> SELECT SUM(comm) FROM emp;
    SUM(COMM)
          2200
    Plan wykonywania
    Plan hash value: 2083865914
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |     2 |     3   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE    |      |     1 |     2 |            |          |
    |   2 |   TABLE ACCESS FULL| EMP  |    14 |    28 |     3   (0)| 00:00:01 |
    SQL> SELECT AVG(comm) FROM emp;
    AVG(COMM)
           550
    Plan wykonywania
    Plan hash value: 2083865914
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |     2 |     3   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE    |      |     1 |     2 |            |          |
    |   2 |   TABLE ACCESS FULL| EMP  |    14 |    28 |     3   (0)| 00:00:01 |
    SQL> SELECT MIN(comm) FROM emp;
    MIN(COMM)
             0
    Plan wykonywania
    Plan hash value: 2083865914
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     1 |     2 |     3   (0)| 00:00:01 |
    |   1 |  SORT AGGREGATE    |      |     1 |     2 |            |          |
    |   2 |   TABLE ACCESS FULL| EMP  |    14 |    28 |     3   (0)| 00:00:01 |
    SQL> SELECT deptno, SUM(comm) FROM emp GROUP BY deptno;
        DEPTNO  SUM(COMM)
            30       2200
            20
            10
    Plan wykonywania
    Plan hash value: 4067220884
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |     3 |    15 |     4  (25)| 00:00:01 |
    |   1 |  HASH GROUP BY     |      |     3 |    15 |     4  (25)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| EMP  |    14 |    70 |     3   (0)| 00:00:01 |
    SQL>Edited by: Łukasz Mastalerz on Jan 14, 2009 11:41 AM

  • Open a SharePoint List item in Modal Pop up in SP 2013 fails after you filter or sort the list

    Sorry for the long post. This has been killing me. I had this script working perfectly fine in SharePoint 2010 (online) and basically i have a source custom list (list A) with a hyperlink column and a Destination List with say title and my name.
    Source List (list A) looks like this with these 2 columns
    Title    Test Link
    A         Link 1
    B         Link 2 
    C         Link 3
    Each of these links link to the actual list item in the destination list, so for example, link 1 is/sites/2013DevSite/Lists/Destination%20List/EditForm.aspx?ID=1
    So basically i want anytime the Link are clicked that point to another list's item to open in a modal dialog and the script below worked perfectly fine in SharePoint 2010 (online)
    <script language="javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js" type="text/javascript"></script>
    <script language ="javascript" type="text/javascript">   
    jQuery(document).ready(function() {
    jQuery('a[href*="EditForm.aspx"]').each(function (i, e) {
    // Store the A tag's current href in a variable
    var currentHref = jQuery(e).attr('href');
    jQuery(e).attr({
    'href': 'javascript:void(0);', 
    // Use the stored href as argument for the ShowInModal functions parameter.
    'onclick': 'ShowInModal("' + currentHref + '");'
    function ShowInModal(href) {
    SP.UI.ModalDialog.showModalDialog({title: "Edit Item", url: href});    
    </script>
    All it does is find the href tags for that particular value Editform.aspx and the pop modal works in SP 2010 online. So the site page is designed in such a way there is a content editor web part with the reference to this javascript file and the sharepoint
    list is right beneath it and this worked perfectly opening in modal windows in SP 2010.
    Since migration to 2013, this is what exactly happens
    1.) when you come to the site page, the modal works,
    2.) If you filter or sort on say the Title or Test Link column in Source list (lets say you select the Value A), the script does not fire at all, if i hover over the hyperlink, the who hyperlink is shown and does not open the hyperlink in the modal pop up.
    - This is important because i want to be able to sort on a particular item...
    Could someone please let me know what am i doing wrong and why is this not working when i sort the list. Thanks for all the help.
    Once again i am trying to open a sharepoint list item in Sharepoint 2013 from another list using Jquery

    A ListItem has its own unique row id so in all likelihood, an insert with the same data will result in a new list entry. The Lists Web Service however, has an UpdateListItem method which will take an update request. [refer
    http://msdn.microsoft.com/en-us/library/office/websvclists.lists.updatelistitems(v=office.15).aspx ]
    There is another note in the conference (marked answered) to your List Item Update problem. Probably worth a try too. [refer
    http://social.msdn.microsoft.com/Forums/en-US/bee8f6c6-3259-4764-bafa-6689f5fd6ec9/how-to-update-an-existing-item-in-a-sharepoint-list-using-the-wss-adapter-for-biztalk?forum=biztalkgeneral ]
    Regards.

  • Apply Auto Enhance filter to Multiple images Simultaneously?

    Greetings Apple Discussions:
    Is it possible to apply the (Preset: Quick Fixes: "Auto Enhance") filter to 89 images at the same time or in a batch?
    If Aperture cant do it what software would you suggest?
    Thanks.

    Select all the versions that you want to auto enhance. Then on the Photos menu: Add Adjustment Preset>Quick Fixes>Auto Enhance.

  • Advanced Sort, Filter (color, image size), DUPLICATES, face recognition, GUI customizeability

    Hi,
    here are some of my Lightroom Feature Requests (maybe later more):
    - Filter based on image size. Example: show me all photos with a resolution of 1600x1200 or less.
    - More complex filtering. Example: show me all photos from the Collection A that are tagged with keyword 'k1' and 'k2' but not with keyword 'k3' and that are in the date range d1-d2 and were made with camera model X.
    - Automatic portrait/human face recognition
    - Sort and filter by color! Example: show me all photos that are mostly green (blue, yellow, red, ...)
    - Intelligent recognition and optional deletion of duplicates. Calculate some kind of fingerprint for each photo (file size won't do I guess) so that it will be possible to recognize duplicates EVEN if they are of different image resolution or orientation (landscape, portrait), i.e. really based on CONTENT of the image!
    - Make the components in the side panels movable so that the user can arrange his/her own panel with the components he uses most and on that side of the screen where he wants it.
    Besides that: I LOVE Lightroom. A GREAT product!! Use it A LOT!
    Nice greetings from Germany,
    Stefan.

    I second that.
    "More complex filtering. Example: show me all photos from the Collection A that are tagged with keyword 'k1' and 'k2' but not with keyword 'k3' and that are in the date range d1-d2 and were made with camera model X."
    This should be relatively easy to do. Most other DAMs in the market, e.g. ACDSee, do have this feature. It doesn't really becomes a real database until you have this feature.
    "Intelligent recognition and optional deletion of duplicates."
    Another great feature in ACDSee. Somehow it finds duplicates, even if filenames and dates are different, shows the different photos and gives you an option on what to do.

  • How can I synchronize my iPhoto events? my iTunes doesn't read them and with the app Images in the iPad I can only find Photos, Albums, Faces and Places, not Events.

    How can I synchronize my iPhoto events? my iTunes doesn't read them and with the app Images in the iPad I can only find Photos, Albums, Faces and Places, not Events.

    I had a problem a couple of months ago when iPhotos suddenly rearranged the order of my Events (Why won't iPhoto let me arrange my photos?) .  I was told "Use albums not events - events are not a good way to organize - albums and folder are designed for organisation and are very flexible".
    Haha!  I should have paid attention and read between the lines!  My iPhotos were highly organised groupings - not according to date but the way I wanted them - and it was so easy to do!  I see now that if I had them all in albums, as per the Apple Apologist suggestion, I wouldn't have this unholy mess I have been left with just to make iPhone & iCloud users happy.  I am now going through Photos and making Albums (of what used to be in my Events)  ... maybe I'll get this finished before they do another non user friendly update!

  • WebPart: Display the search result in an spgridview with filter and sort

    hi,
    For explain more in details.
    I need the search result in a table displaying some meta common in the different library.
    I've to have the possibility to filter and sort the grid.
    i'm trying to extend Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart
    i can have the result from the textbox search with: SharedQueryManager.GetInstance(this.Page).QueryManager
    My queryManager is populate in the method: CreateChildControls
    I put the sample code i use. and in the populateData method, my querymanager is null while in the createChildContriol, it's correctly populate with : this.queryManager = SharedQueryManager.GetInstance(this.Page).QueryManager;
    using System;
    using System.ComponentModel;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    using Microsoft.SharePoint.Search.Internal.WebControls;
    using Microsoft.Office.Server.Search.Query;
    using Microsoft.Office.Server.Search.WebControls;
    using System.Data;
    using System.Xml;
    namespace CustomSearchResultWebPart.CustomCoreResultWebPart
    [ToolboxItemAttribute(false)]
    public class CustomCoreResultWebPart : Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart
    private ObjectDataSource objDS;
    private const string ObjectDataSourceID = "gridViewDataSource";
    private QueryManager queryManager;
    private SPGridView gridView = new SPGridView();
    protected override void CreateChildControls()
    //here is correctly populate
    this.queryManager = SharedQueryManager.GetInstance(this.Page).QueryManager;
    try
    LoadSearchGrid();
    catch (Exception ex)
    Page.Response.Write(ex.Message + " - " + ex.StackTrace);
    //base.CreateChildControls();
    protected override void OnInit(EventArgs e)
    base.OnInit(e);
    protected override void OnLoad(EventArgs e)
    base.OnLoad(e);
    protected override void OnPreRender(EventArgs e)
    //gridView.DataBind();
    base.OnPreRender(e);
    protected override void Render(HtmlTextWriter writer)
    base.Render(writer);
    public DataTable populateData()
    DataSet dtSet = null;
    DataTable dtTable = null;
    //here is my query manager is null
    if (queryManager != null && queryManager.Count > 0)
    XmlDocument xdoc = new XmlDocument(); //We are using XmlDocument
    xdoc = queryManager.GetResults(queryManager[0]);//xml returned by search
    if (xdoc != null)
    XmlReader xmlReader = new XmlNodeReader(xdoc);
    dtSet = new DataSet();
    dtSet.ReadXml(xmlReader);
    if (dtSet.Tables.Count > 1)
    dtTable = dtSet.Tables["Result"];
    return dtTable;
    private void LoadSearchGrid()
    this.objDS = new ObjectDataSource();
    this.objDS.ID = ObjectDataSourceID;
    this.objDS.SelectMethod = "populateData";
    this.objDS.TypeName = this.GetType().AssemblyQualifiedName;
    this.objDS.ObjectCreating += new ObjectDataSourceObjectEventHandler(objDS_ObjectCreating);
    this.Controls.Add(objDS);
    gridView.ID = "_gridView";
    gridView.AutoGenerateColumns = false;
    gridView.Width = new Unit(100, UnitType.Pixel);
    gridView.EnableViewState = false;
    gridView.AllowPaging = true;
    gridView.PageSize = 5;
    gridView.DataSourceID = ObjectDataSourceID;
    this.Controls.Add(gridView);
    void objDS_ObjectCreating(object sender, ObjectDataSourceEventArgs e)
    //e.ObjectInstance = objDS;
    protected void gridView_RowDataBound(object sender, GridViewRowEventArgs e)
    //throw new NotImplementedException();
    Do you have a sample that i can use or some tutorial?
    thanks for your help

    I added this in my class
    public class CustomResultsDatasource : CoreResultsDatasource
    public CustomResultsDatasource(Microsoft.Office.Server.Search.WebControls.CoreResultsWebPart parentWebPart)
    : base(parentWebPart)
    View = new CustomResultsDatasourceView(this, GetType().Name);
    public class CustomResultsDatasourceView : CoreResultsDatasourceView
    public CustomResultsDatasourceView(SearchResultsBaseDatasource dataSourceOwner, string viewName)
    : base(dataSourceOwner, viewName)
    //make sure we have a value for the datasource
    if (DataSourceOwner == null)
    throw new ArgumentNullException("DataSourceOwner");
    CustomResultsDatasource datasource = this.DataSourceOwner as CustomResultsDatasource;
    this.QueryManager = SharedQueryManager.GetInstance(datasource.ParentWebpart.Page).QueryManager;
    And this in my customSearchResultWebPart
    protected override void CreateDataSource()
    //base.CreateDataSource();
    this.DataSource = new CustomResultsDatasource(this);
    How can i use queryManager in populateData?
    thanks for your help

  • How to show the filter and sort capabilities in adf dynamic table

    hi
    how to show the filter and sort capabilities in adf dynamic table..
    Pls help me

    Hi
    Click on a colum in your table and go to the properties pallet
    make true the sortable property then you can sort the table according to that column
    Thanx
    Padma

  • When I add a photo filter to an image, I can't use the color sampler in the photo filter dialog box. It automatically selects white. What am I doing wrong?

    Whenever I add a photo filter to an image, I can't use the sampler tool that automatically appears when you open the photo filter dialog box to manually select the color of your filter. Whenever I try to use it, it automatically selects white (#ffffff), no matter where I click in the image. Does anyone know what I'm doing wrong?
    Thanks

    When you add an adjustment layer, the layer mask is automatically active. You need to activate the pixel (image) layer by clicking on it in the Layers panel.

  • The HOLE filter.  Can I place an image behind the hole created in another image?

    The HOLE filter.  Can I place an image behind the hole created in another image?

    Here's an example of the hole filter composited against a background image. This filter will run in the Pixel Bender Toolkit.
    <languageVersion : 1.0;>
    kernel HoleCompositedAgainstBackground
    <
      namespace: "pb::forums";
         vendor: "spotted chicken";
        version: 1;
    description: "Hole filter composited against a background image. The original 'Hole' filter was written by Jerrynet. See the Pixel Bender Exchange, <http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1550519#> for more information.";
    >
    //< namespace : "net.Jerry.PixelBender";
    // vendor : "[email protected]";
    // version : 4;
    // description : "A Hole Distortion Effect.";
    //>
    parameter float radius
    <
         minValue:    float(0.0);
         maxValue: float(1000.0);
    defaultValue:  float(100.0);
    aeDisplayName: "Radius";
    >;
    parameter float2 center
    <
         minValue:   float2(-800,-800.0);
         maxValue: float2(1600.0,1600.0);
    defaultValue:   float2(120.0,120.0);
    aeDisplayName: "Center";
    >;
    parameter float EdgeSmooth
    <
         minValue: float(0.0);
         maxValue: float(3.0);
    defaultValue: float(1.0);
    aeDisplayName: "Edge smoothing";
    >;
    input  image4 src;
    input  image4 background;
    output pixel4 dst;
    void
    evaluatePixel()
    float2 Pos_from_cen = outCoord() - center;
    float p_length = length(Pos_from_cen);
    float fun = (radius*radius)/abs(p_length);
    float m = fun/sqrt(Pos_from_cen[0]*Pos_from_cen[0] + Pos_from_cen[1]*Pos_from_cen[1]);
    float2 pp = -float2(m*Pos_from_cen[0], m*Pos_from_cen[1]) + outCoord();
    pixel4 final = sampleLinear(src,pp);
    if (p_length <= (radius+EdgeSmooth/2.0))
    //smooth the circle edge
    if (p_length >= (radius-EdgeSmooth/2.0))
    final *= (p_length-radius+EdgeSmooth/2.0)/EdgeSmooth;
    else
    final = sampleNearest(background, center + Pos_from_cen);
    dst = final;

  • How to apply an image to the back face of another?

    I am only fairly new to motion but am, learning fast. I'm wondering if someone can tell me how to apply an image to the back face of another image?
    I'm trying to animate a brochure opening and want to apply the front cover as the back face to the page I'm opening to (each page is a separate .pdf file). I know this can be done easily rather than animating them as 2 separate objects, i just can't remember how to do it.

    Thanks Mark. That is how I will do it if there isn't a simpler way. I could have sworn i have seen the option to allocate an image as the back face to another image. So when it animates, you automatically see the other image on the reverse side?

  • The graduated filter shows no change in the main screen image. It works on the small thumbnail in the upper left hand corner...

    My graduated filter doesn't work in the main image, but shows changes in the small upper left thumbnail.
    How do I fix?

    In LR Prferences try unchecking 'Use Graphics Processor.'
    If that works next try upgrading your graphics drivers via AMD, Intel, or Nvida webste for your graphics adapter model.

  • Images from the Cannon 1D Mark IV will not sort in accourding to capture time w/other images shot?

    Recently shot a wedding using 4 different cameras.  All of the images will sort accourding to capture time except the images shot on the Cannon D1 Mark IV.  Has anyone run into this, and is there a fix for it?  If not how do a manually sort them into the other images.  They seem to want to keep themselves segregated.

    [email protected] wrote:
    Is there a manual way of moving them into order.
    Put them all into a Collection then click and drag them to the order you want. Remember, that you must click on the thumbnail image, not the frame, for it to be moveable.

  • After restoring my photos from time machine they are all zoomed in on the faces and don't have the surrounding image, what can I do to find the original photos?

    All the photos seemed to have reinstalled from the 'Faces' section of my library and none of the videos are present. I am a film student and my entire footage from summer seems to have disappeared, does anyone have any idea what has happened? Please help!
    Thanks in advance

    http://kb.mozillazine.org/Disappearing_mail

Maybe you are looking for

  • Function Modules for Text determination

    Hello, Could someone please point me to Function Modules for the following: 1) Given a transaction type (say '0000'), I need the text Det. procedure for that transaction type. 2) Now, given the Text Det. Procedure, I need the set of all Valid Text Ty

  • Connecting to 9i Lite DBMS via SQL*Plus?

    Finally got the install to run successfully. However, I can't make an ODBC connection to the database with SQL*Plus. Any ideas (other than going back to 8i Lite)?

  • How to specify multiple sequence for multiple fields in a primary key!

    Hi, i have a table which has about 15 fields, one of the field is primary key and i am able to specify the sequence for it using toplink and when the object is created through toplink the sequence get generated automatically, which is fine. Now i hav

  • How to easily migrate my installation between vm/raspberrypi/and more

    Hello, Some quick background: I have a x86_64 VM at the moment that has certain services running like znc, nginx, transmission, a git server, ssh, dhcpd and some other minor stuff configured over time. It's mostly for personal usage. At some time in

  • Suscripcion

    no puedo cancelar mi suscripcion a aeroeffects..... estro a mi plan pero solo dice q lo tengo en un plan mensual pero la opcion de cancelarlo no aparece por ninguna parte