Select only some faces to scan

can you set it up so it only scans some events with faces so it does not take the hours it does to scan all?

that is what i thought. thank you for the reply.

Similar Messages

  • Insert to table as select only some values

    Hi all,
    I have those two table
    Table ANAGUTEN
    CODI_UTEN NOT NULL NUMBER(5)
    NOME_UTEN NOT NULL VARCHAR2(30)
    PASS_UTEN NOT NULL VARCHAR2(30)
    Table RELAUTENPROF
    CODI_PROF NOT NULL NUMBER(5)
    CODI_UTEN NOT NULL NUMBER(5)
    The problem is that only some records of ANAGUTEN are in RELAUTENPROF, but this is an error.
    How can I insert into RELAUTENPROF only the record (the field CODI_UTEN) that are in ANAGUTEN and that aren't into Relautenprof.
    Is there a single statment to do this. I wouldn't use a pl/sql procedure
    Note: the codi_prof is always = 2
    Thank's and sorry for the simple question
    Paolo

    Here's three, I can think of at least three more.
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM anaguten
    WHERE codi_uten NOT IN (SELECT codi_uten
                            FROM relautenprof)
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM anaguten a
    WHERE NOT EXISTS (SELECT 1
                      FROM relautenprof r
                      WHERE r.codi_uten = a.codi_uten)
    INSERT INTO relautenprof
    SELECT 2, codi_uten
    FROM (SELECT codi_uten
          FROM relautenprof
          MINUS
          SELECT codi_uten
          FROM anaguten)John

  • ALV - how to make selectable only some rows on an ALV?

    Hi my problem is:
    I have an ALV GRID as output of a report.
    I have to make selectable only few rows based on the contents of a field (showed in a column in the ALV).
    Is it possible?
    Best Regards, Vincenzo

    I did understand, but as i told you there is nothing like that, neither an option nor an event to capture.
    Here is the documentation: http://help.sap.com/saphelp_erp2005vp/helpdata/EN/bf/3bd1369f2d280ee10000009b38f889/frameset.htm
    Read it and choose what you need and what is in existance.

  • Create smart album with ONLY some faces

    Hi. I need some help here. I created a smart album and I want it to have photos where only my girlfriend and I appear. I put two conditions: Face-is-my_name, and Face-is-mygirlfriend'sname. The problem is that it creates the album but it also contains photos where we and someone else appears, not only the two of us. Is there any way I can get it done?
    Thanks for your posts.

    Yes, I said to meet ALL conditions, and my smart album is in fact just like you said, with photos that have both of us but also other people.
    But I get it, the only way to exclude other people is specifically by name. I just wanted to know if there was another "more automatic" way. Thanks a lot LarryHN.

  • Select only some rows

    Hi all,
    I've a query with more than 500 rows as result. I'm only interested to show the first 50 rows. Did you know any way to prepare the select sentence to do it? I prefer avoid use cursors to do that.
    Regards,
    dbajug

    Hitesh Nirkhey wrote:
    hi
    use ROWNUM keyword for fetching first 50 rows
    simplest example
    select * from emp
    where rownum < 5 ;
    regards
    HiteshROWNUM applies to the rows after they are collected into a result set. Thus, it may, or may not, fulfill the OP's requirements. He still needs to define what he means by "first 5 rows".
    http://psoug.org/reference/pseudocols.html
    Also see description of ROWNUM in the fine SQL Reference manual

  • Only some rows selectable

    Hi,
    I wonder if anybody could help me in my problem?
    I made a table and would like only some of the rows to be selectable. Is this possible?
    The best solution would be to hide those squares on the left of the rows.
    Thanks in advance for your help.
    Piotrek
    Edited by: Piotr Kondratowicz on Feb 10, 2009 4:29 PM

    Hi Piotr,
    Create a value attribute of type boolean(Ex: ed) and assign it to all editable fields of the table.
    Based on a condition enable(ed=true)/disable(ed=false) the row fields as read only.Which will fulfill your requirement.
    Thanks & Regards,
    Jhansi Miryala

  • Why are only SOME metadadta selectable?

    Why are only SOME metadadta selectable? (and this cmd - C copy-able)
    If your try to select 'Pixel Size', you can.
    If you try to select 'Aperture', you can not.
    If you try 'Orientation', you can.
    If you try 'Exposure Bias', you can not
    Why on earth does it do this? Why not just give access to all the fields?
    Aperture is so great at letting me attach metadata to my images, but it seems so limited in allowing you to get it back...

    itunes only back up photos in your camera roll.

  • IPhoto 8.1.2 can you create a smart album with only one face

    I'm using iPhoto 8.1.2 and have about 23k photos in the library. I have identified 32 key faces, and would now like to create some smart albums that contain only the face or faces that I want and to exclude all the others.  S for example  a smart album that has only my son.
    I tried using the doesn't contain this face, but you can only have around 10 filters/critiria in a smart album.
    any suggestions are appriciated

    You can't really, because you can't exclude enough of the faces.
    I would keyword the preferred images as well, so finding the face and the keyword would find the pics of the person alone.
    Regards
    TD

  • Selecting only one row at a time

    Hi experts,
    i have following doubt regarding selecting rows from a db:
    Is there any way of selecting only one row AT A TIME from a dabase just to collect the data in rows instead of in a unique document containing all the rows?
    I would like you to ellaborate on this as i need to send only one row to the IE, and then other row, and so on... without throwing any error!
    I have seen that there are SELECT SINGLE and SELECT UP TO 1 ROW, but these two methods are only useful when retrieving only one row, and that does not match my requirements. I need to process all the rows but one by one..
    I know that we can use the receiver jdbc adapter as if it was a sender by means of its specific datatype, but how to do it row by row??
    Hope i had explained well..
    Thanks in advance and best regards,
    David

    Hi kiran,
    Yes, my table has 5 not null fields but i am selecting and updating fixes values so i think that I will definetely go for the next solution:
    SELECT * FROM t1 WHERE status='0' and ROWNUM<2;
    UPDATE t1 SET status='1' WHERE status='0' and ROWNUM<2;
    My only concern is if the update will take the same row that the select.... BTW, I think it will
    ..What do you guys think?
    I ve been trying to operate with your proposed queries but i received some errors. Your queries are very interesting but i think that with the above ones i meet my requirements as the status field will be 0 for not processed rows and 1 for precessed ones (and the update will look for the row that meets the same 'where' clause than the select, and then, and only then, it will set status='1').
    The only thing i have to care about is what i questioned before.
    Thanks a lot and best regards,
    David

  • How do I select only certain songs from itunes library to upload to my iphone?

    Trying to free up some memory and my whole itunes library is loaded on my phone.  Is there a way to select only certain songs to sync with my phone?

    When your iphone is connected to iTunes, go to the phone section, go to options and then select "Sync only checked songs and videos".  Then go to yotur iTunes music library, and check only the songs you want.  If you are viewing the library in the "songs" option the check boxes are next to the songs.  If you are viewing from the "album" view, you have to right-click each song and select check.

  • Just bought a nano and want to download some of my iTunes library. The "Music" button shows almost all my selections but some albums are missing, yet thos albums appear on the nano icon on my desktop but none of the others. What's happening?

    Just bought a nano and want to download some of my iTunes library. The "Music" button shows almost all my selections but some albums are missing, yet ONLY those albums appear on the nano icon on my desktop after being dragged there but none of the others. What's happening?
    I've read some of the post here that I thought might help but they refer to titles (Music) and triangles in the "Devices" window which are nowhere to be seen when I open the "Devices" window.
    I have iTunes 11.0.3 and Mac OS 10.6.8. Does this make a difference?

    I should mention that, for the first problem, I do make sure that my new tracks are stored in the folder where I told iTunes that my music is in. Also, when I say the cataloging of my library stops short of cataloging all my songs, I have tried leaving the computer unattended for days (my computer's sleep mode is disabled). It always stops before cataloging all of my music regardless of whether I am doing something else while iTunes is cataloging, or if I just let iTunes be the only program that's open during the cataloging process.

  • Itunes wont list all songs on ipod, only some of them

    My itunes doesn’t list all the songs on my ipod, only some of them. (Only the ones uploaded after a certain date, when I think I forgot to eject my ipod one day).
    The ipod definitely has all the albums I've ever uploaded on it. I know because I've tried looking on my friends’ computer and his DOES show all songs on my ipod.
    Sounds like a PC problem, not an ipod problem, right? So I tried re-installing itunes, but that doesn’t fix it.
    It’s not a bit deal, but it just means I can’t delete certain albums from my ipod.

    How exactly are you trying to view this info.
    Select the iPod as the Source. Do not select any of the playlists on the iPod, just select the iPod itself.
    Any reason you are manually managing the iPod?

  • When I try to import a folder of jpeg files into iPhoto, only some are imported. I get the message "The following files could not be imported. (The file is in an unrecognized format.)" I am running iPhoto '09 ver. 8.1.2 on OSX 10.5.8. They are all RGB.

    When I try to import a folder of jpeg files into iPhoto, only some are imported. I get the message "The following files could not be imported. (The file is in an unrecognized format.)" I am running iPhoto '09 ver. 8.1.2 on OSX 10.5.8. They are all RGB.

    As a Test:
    Hold down the option (or alt) key and launch iPhoto. From the resulting menu select 'Create Library'
    Import a few pics into this new, blank library. Is the Problem repeated there?

  • Asset selections only allowed in repeat run

    Hi Experts,
    I am was posted Deprication 2009 with 12 periods from Planned posting run.
    When I am doing Deprication 2010 with 1 periods from Planned posting run for perticual period its work in test run u2018 T E S T R U N completed successfully , A document was created u2018, but when I remove the tick from test run system give.
    Error u201CAsset selections only allowed in repeat run Message no. AA734u201D
    Diagnosis
        Processing not possible because of errors in the parameters.
    System Response
        Processing cannot be continued.
    Procedure
        When performing a new posting run or a restart, you cannot limit it to
        the assets you want to be processed. You can only select assets in a
        repeat run. Start the program again with the appropriate parameters.
    Waiting for reply.
    In advance thanks
    Regards,
    Jemes
    Edited by: Jemes on Jun 8, 2010 3:21 PM
    Edited by: Jemes on Jun 8, 2010 3:23 PM

    When you run a planned, restart or unplanned depreciation run you can ony run it  only for all the assets in the real run
    When you have run the planned or unplanned depreciation it create records in the system for all the assets and there are errors then you should run the restart for all the assets.
    The repeat run you use when you have changed 1 or some assets in the old month and wand only to rerun for these assets the depreciation run.
    In a test run you can run it for only some assets but  as no test you have to run it for all the assets (only for the repeat run you can make a selection in the real run)

  • I can't select a portion of a scanned page

    I often have documents scanned into PDF format at two different copy shops. Sometimes I want to use the Acrobat 8 or Adobe Reader 7 selection tool to select a portion of a scanned page and then edit that selection in Photoshop.
    When I open scan from one of the shops (which uses Acrobat 4 for scannng) and choose the selection tool, the cursor turns into a crosshair and I am able to then marquee-select a portion of the scanned image, copy the selection and then edit the selected image in Photoshop.
    When I open a scanned image from the other copy shop (which uses Acrobat 7 for scanning) and choose the selection tool, the cursor remains an arrowhead and I cannot select any portion of the scanned image.
    Can you please tell me how to correct this problem? Thanks

    You can only edit an entire graphic, not parts. In addition, you can not do the edit in Reader. In both of the cases you describe, you should be able to select the image to edit. The process you are using sounds like a graphic copy (at the screen resolution) which is far from an optimal process for getting the graphics. You can save all graphics to the hard drive and edit those, retaining all of the resolution of the original.
    In terms of the two cases, it sounds like the second shop may have set security to not allow copying of the graphic screen.

Maybe you are looking for