Merge files and remove non-static elements

Where is the feature that allowed images to be merged while removing non-static elements.  I saw a demonstration of removing people from a scene when multiple pictures were taken and the people had changed their positions. This was touted as a feature found only in PS extended a few years ago. I have never been able to locate it.

This involves an "Image Stack". See http://help.adobe.com/en_US/photoshop/cs/using/WS1E389632-4B37-425e-8EAB-1384C0B432D3a.htm l

Similar Messages

  • Norton detected lightroom files as high risk files and removed those

    Hi.
    My Norton 360 detected following files as high risk files and removed those
         -mc_config_mp2v.dll
         -mc_config_avc.dll
    Now lightroom do not work properly
    This happened both lightroom 4.1 rc1 and rc2.
    Should I configure Norton to accept those files or are there alternative solution/correction.

    Yes, known issue (Norton being overly sensitive). Unquarantine the files and you should be OK.

  • Read two CSV files and remove the duplicate values within them.

    Hi,
    I want to read two CSV files(which contains more than 100 rows and 100 columns) and remove the duplicate values within that two files and merge all the unique values and display it as a single file.
    Can anyone help me out.
    Thanks in advance.

    kirthi wrote:
    Can you help me....Yeah, I've just finished... Here's a skeleton of my solution.
    The first thing I think you should do is write a line-parser which splits your input data up into fields, and test it.
    Then fill out the below parse method, and test it with that debugPrint method.
    Then go to work on the print method.
    I can help a bit along the way, but if you want to do this then you have to do it yourself. I'm not going to do it for you.
    Cheers. Keith.
    package forums.kirthi;
    import java.util.*;
    import java.io.PrintStream;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.IOException;
    import krc.utilz.io.ParseException;
    import krc.utilz.io.Filez.LineParser;
    import krc.utilz.io.Filez.CsvLineParser;
    public class DistinctColumnValuesFromCsvFiles
      public static void main(String[] args) {
        if (args.length==0) args = new String[] {"input1.csv", "input2.csv"};
        try {
          // data is a Map of ColumnNames to Sets-Of-Values
          Map<String,Set<String>> data = new HashMap<String,Set<String>>();
          // add the contents of each file to the data
          for ( String filename : args ) {
            data.putAll(parse(filename));
          // print the data to output.csv
          print(data);
        } catch (Exception e) {
          e.printStackTrace();
      private static Map<String,Set<String>> parse(String filename) throws IOException, ParseException {
        BufferedReader reader = null;
        try {
          reader = new BufferedReader(new FileReader(filename));
          CsvLineParser.squeeze = true; // field.trim().replaceAll("\\s+"," ")
          LineParser<String[]> parser = new CsvLineParser();
          int lineNumber = 1;
          // 1. read the column names (first line of file) into a List
          // 2. read the column values (subsequent lines of file) into a List of Set's of String's
          // 3. build a Map of columnName --> columnValues and return it
        } finally {
          if(reader!=null)reader.close();
      private static void debugPrint(Map<String,Set<String>> data) {
        for ( Map.Entry<String,Set<String>> entry : data.entrySet() ) {
          System.out.println("DEBUG: "+entry.getKey()+" "+Arrays.toString(entry.getValue().toArray(new String[0])));
      private static void print(Map<String,Set<String>> data) {
        // 1. get the column names from the table.
        // 2. create a List of List's of String's called matrix; logically [COL][ROW]
        // 3. print the column names and add the List<String> for this col to the matrix
        // 4. print the matrix by inerating columns and then rows
    }

  • Read in XML file and spit out specific element

    Hi all i wonder if someone could give me a hand. I've got some code (below) which reads in an xml file and spits out the contents of the file. Thats fine and dandy, however what i want to be able to do is specify which element to spit out, which i'm not sure how to do. So say i had the following xml file:
    <?xml version="1.0"?>
    <OpenSourceQuestions>
         <question>
              <setup>A raster graphics editor</setup>
              <answerChoice1>The Gimp</answerChoice1>
              <answerChoice2>The Chimp</answerChoice2>
              <answerChoice3>The Pimp</answerChoice3>
              <answerChoice4>The Blimp</answerChoice4>
              <correctAnswer>The Gimp</correctAnswer>
         </question>
         <question>
              <setup>test question 2</setup>
              <answerChoice1>question2 answer1</answerChoice1>
              <answerChoice2>question2 answer2</answerChoice2>
              <answerChoice3>question2 answer3</answerChoice3>
              <answerChoice4>question2 answer4</answerChoice4>
              <correctAnswer>question2 answer1</correctAnswer>
         </question>
    </OpenSourceQuestions>What i want to do is only spit out the xml for the first question, i.e. "A raster graphics editor" and its answers
    Here is my java code for reading in and arsing the file:
    void readXML(){
                try {
                     File fXmlFile = new File("MyXMLFile.xml");
                     DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
                     DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
                     Document doc = dBuilder.parse(fXmlFile);
                     doc.getDocumentElement().normalize();
                     System.out.println("Root element :" + doc.getDocumentElement().getNodeName());
                     NodeList nList = doc.getElementsByTagName("question");
                     System.out.println("-----------------------");
                     for (int temp = 0; temp < nList.getLength(); temp++) {
                       Node nNode = nList.item(temp);
                       if (nNode.getNodeType() == Node.ELEMENT_NODE) {
                         Element eElement = (Element) nNode;
                         System.out.println("Question : "  + getTagValue("setup",eElement));
                         System.out.println("Answer1 : "  + getTagValue("answerChoice1",eElement));
                         System.out.println("Answer2 : "  + getTagValue("answerChoice2",eElement));
                         System.out.println("Answer3 : "  + getTagValue("answerChoice3",eElement));
                         System.out.println("Answer4 : "  + getTagValue("answerChoice4",eElement));
                } catch (Exception e) {
                  e.printStackTrace();
               private static String getTagValue(String sTag, Element eElement)
                     NodeList nlList= eElement.getElementsByTagName(sTag).item(0).getChildNodes();
                     Node nValue = (Node) nlList.item(0);
                     return nValue.getNodeValue();
               }

    IN the time since i posted i have solved my own query!

  • Help with merging files and calling SOAP adapter in BPM

    Hello All,
    I have a scenario, where am merging a header file and item file and calling a webservice in ECC. The requirement is that the no. of calls to the webservice depends on the no. of lines in the header file. Mapping is developed according to this rule and the operation mapping is also set for multiple messages. Testing the mapping produces required results.
    But when I run the scenario invoking BPM to merge the files with 2 lines in header records the webservice is called just once. On further analysis into SXMB_MONI_BPE, MESSAGES_OUPUT table in the mapping step has 2 messages. The instance ID of the message gone out shows a checkered flag with processed successfully status, but the second line is stuck in status "Transfer To Process Engine" .
    Any thoughts what I should be doing to push second message out automatically.
    Prashanth

    Hi Prashanth,
       to find out what has happened to the message try checking the workflow log,
    i.e., select the message with the 'Transfer to Process Engine" status in SXI_MONITOR and drill down in the outbound PE column.
    Once in the workflow log select 'List with Technical Detailsu2019'.
    Regards
    Kenny

  • Merging files and alert if file missing?

    Hi experts.
    I have a situation when I will pickup 5 files from different systems.
    The files will be merged into one file and have no problems with that I can use append in the file adapter.
    But here coems the problem. The merged file will be sent to the SAP sysmet at a specific timesrtamp and if a file i missing then we should send an alert or mail to notify the organisation that the file is missing.
    The notification has to be sent to the correct person according to what file is missing.
    We are using PI 7.40 Java only.
    Is the only way to go the new BPM?
    Is there anybody who has a guide on how to setup the new BPM?
    Regards
    Andreas

    Hi Raj,
    Raj Says..
    my doubt is Java map take input of all files as input or only one file it takes input.??
    Java Mapping will take one input file at a time as its input file and will process it.
    For three files at source folder; Java Mapping will be called threee times in XI.
    regards,
    Madan Agrawal

  • I recently downloaded DOSBOX (a DOS emulator). I have since uninstalled the file and removed it from my download history, yet every time I use Firefox, I get a pop-up to save the file (re-download) again. How do I fix it?

    I recently downloaded DOSBOX (a DOS emulator). I have since uninstalled and removed the file from my system, yet every time I access the net, I get a pop-up to save the file (re-download) again. How do I fix it?

    Sometimes a problem with Firefox may be a result of malware installed on your computer, that you may not be aware of.
    You can try these free programs to scan for malware, which work with your existing antivirus software:
    * [http://www.microsoft.com/security/scanner/default.aspx Microsoft Safety Scanner]
    * [http://www.malwarebytes.org/products/malwarebytes_free/ MalwareBytes' Anti-Malware]
    * [http://support.kaspersky.com/faq/?qid=208283363 TDSSKiller - AntiRootkit Utility]
    * [http://www.surfright.nl/en/hitmanpro/ Hitman Pro]
    * [http://www.eset.com/us/online-scanner/ ESET Online Scanner]
    [http://windows.microsoft.com/MSE Microsoft Security Essentials] is a good permanent antivirus for Windows 7/Vista/XP if you don't already have one.
    Further information can be found in the [[Troubleshoot Firefox issues caused by malware]] article.
    Did this fix your problems? Please report back to us!

  • Pick Up file and remove roles/profiles for the specified ID's

    I am wondering if the following would be possible.
    I want to dump a csv file containing user ID's that are no longer required on a daily basis on a server.  Would it be possible to write a program to go out and retrieve that file and where ever there is a match on ID's, remove all roles and profiles associated with that user and change the user group?
    Sounds very simple from a theoretical standpoint but I'm not sure of it's truely feasibility.  I'm not looking for any coding, just to know whether it could be done.  Any help would be great.

    Hi Martin,
    Very true, but infrastructure folks might not want to manage certificates and OS users (good tip for Chris to check on...)
    Open file shares are out there "in the wild" - which is what I wanted to warn against (in addition to the application authorizations within SAP to run this "interface"...
    If it is running as a job, then a check on system field sy-batch = 'X' is usefull, but blunt only for the online execution.
    Personally I have used an (inaccessible) timestamp execution scheme for such things in DB tables not accessibly to the application transactions before. Have not been able to hack it myself, but tried hard..
    But if the file shares are open or the password is in clear text (in a script, .properties type file, ABAP text, network traffic, etc) then I would not class it as secure.
    Such "identity management" stuff, particularly when you want to intergrate it with HR events, is best taken care of centrally in an "identity store" which you can secure and encryot etc centrally.
    Local batch jobs accessing servers and registering / starting external programs and vise-versa to transfer files etc is decentral spagetti coding and security nightmare... ;-(
    Cheers,
    Julius

  • How to remove a hidden text in pdf file with Acrobat Pro 9. How to save pdf file and remove hidden text?

    I
    I made this file in indesign, the highlited empty spaces indicates that their is a hidden text and it pop up when searching for some words in pdf file. so how can I save pdf file to keep only the seen text ???

    Dear lrosenth,
    I went through some codes/suggestions in internet and I found that I need to have cmap file and cid font file for the respective font since pdf doesn't support unicode fonts directly.
    Can you help me to know where can I get cmap file and cid font file for tamil language font Latha(TrueType) microsoft font.
    Regards,
    Safiq

  • Grab new files and remove once processed from directory

    Currently I have a JAVA agent that is Hardcoded to grab a certain file from a directory and Import it into a Lotus Domino Rich Text Field on a Document.
    I would like for this agent to look for all files in the directory, grab them, then remove them. Can this be done. My code follows:
    (Sorry I do Not have a Color Coder)
    import lotus.dxl.*;
    import java.io.*;
    public class sample2
    static DXLDatabase db1;
    static DXLSession sess;
    static DXLImporter imp1;
    static DXLImportOptions impopt1;
    public static void main( String[] args )
    try {
         db1 = new DXLDatabase("XMLsend.nsf", "");
         // Create a session and initialize it
         sess = new DXLSession();
         sess.init();
         imp1 = new DXLImporter(sess);
         impopt1 = new DXLImportOptions();
         // Make a change to the DXLImportOptions object.
         impopt1.setCreateDbOption(impopt1.CREATEDB_ALWAYS);
         // The following line must be called before any
         // DXLImportOptions changes will take effect.
         imp1.setImportOptions(impopt1);
         FileInputStream fis1 = new FileInputStream("file:///C:/Data/XML/Xmltest.xml");
         imp1.importDXL(fis1, db1);
         catch (IOException ex) {
         System.out.println("Caught a Java IO Exception");
         System.out.println("error message = " + ex.getMessage());
         catch (DXLImportException ex) {
         System.out.println("\nCaught a DXLImportException\n");
         System.out.println("error message = " + ex.getMessage());
         ex.destroy();
         catch (DXLException ex) {
         System.out.println("\nCaught a DXLException\n");
         System.out.println("error message = " + ex.getMessage());
         if (ex.isImportException())
              System.out.println("Import Error");
         else if (ex.isNotesException()) {
              System.out.println("Notes Error");
              System.out.println("Notes error code = " + ex.getNotesErrorCode());
         else
              System.out.println("Unknown Error");
         ex.destroy();
         finally {
         try {
              if(db1 != null) {
              db1.destroy();
              if(imp1 != null) {
              imp1.destroy();
              if(impopt1 != null) {
              impopt1.destroy();
              if(sess != null) {
              sess.destroy();
         catch(DXLException e) {
              System.err.println("A DXLException occurred during destroy()s");
              e.destroy();
         catch(Exception e) {
              System.err.println("An Exception occurred during destroy()s");
    }

    import lotus.dxl.*;
    import java.io.*;
    public class sample2
    static DXLDatabase db1;
    static DXLSession sess;
    static DXLImporter imp1;
    static DXLImportOptions impopt1;
    public static void main( String[] args )
    try {
    db1 = new DXLDatabase("XMLsend.nsf", "");
    // Create a session and initialize it
    sess = new DXLSession();
    sess.init();
    imp1 = new DXLImporter(sess);
    impopt1 = new DXLImportOptions();
    // Make a change to the DXLImportOptions object.
    impopt1.setCreateDbOption(impopt1.CREATEDB_ALWAYS);
    // The following line must be called before any
    // DXLImportOptions changes will take effect.
    imp1.setImportOptions(impopt1);
    FileInputStream fis1 = new FileInputStream("file:///C:/Data/XML/Xmltest.xml");
    imp1.importDXL(fis1, db1);
    catch (IOException ex) {
    System.out.println("Caught a Java IO Exception");
    System.out.println("error message = " + ex.getMessage());
    catch (DXLImportException ex) {
    System.out.println("\nCaught a DXLImportException\n");
    System.out.println("error message = " + ex.getMessage());
    ex.destroy();
    catch (DXLException ex) {
    System.out.println("\nCaught a DXLException\n");
    System.out.println("error message = " + ex.getMessage());
    if (ex.isImportException())
    System.out.println("Import Error");
    else if (ex.isNotesException()) {
    System.out.println("Notes Error");
    System.out.println("Notes error code = " + ex.getNotesErrorCode());
    else
    System.out.println("Unknown Error");
    ex.destroy();
    finally {
    try {
    if(db1 != null) {
    db1.destroy();
    if(imp1 != null) {
    imp1.destroy();
    if(impopt1 != null) {
    impopt1.destroy();
    if(sess != null) {
    sess.destroy();
    catch(DXLException e) {
    System.err.println("A DXLException occurred during destroy()s");
    e.destroy();
    catch(Exception e) {
    System.err.println("An Exception occurred during destroy()s");
    }

  • Convert files and remove originals from library?

    Ive only been using iTunes for a bit now but I think Ive got it figured out but one thing I cant seem to work out is if there is a way to get iTunes to remove the original file after it has converted it to an iPod format.
    So far I have to do this:
    -Import Files
    -Convert Files
    -Then go through and delete original files form the library
    Is there a way to set it to 'remove original after conversion' or only 'add to the library after conversion'? Any ideas of how I can get this to work or not would be greatly appreciated.

    Nope. No way to automatically remove the original file.
    You'll have to manually do this.
    You can create a Playlist of songs to convert, then go back to the Playlist and mass delete those originals (Shift-Delete).

  • Something changed on my file and now my vector elements and fonts look pixelated in CS6

    Today an illustrator file with vector objects and fonts that I've been working on for days looked pixelated when enlarging at more than 400%. I couldn't find the fix so I started a new canvas, selected everything from my pixelated file, pasted it into a new canvas and everything transferred correctly so I was able to continue working with my vector elements again.  I was curious if anyone knows what made my vector elements change to pixels and how to fix it.  Thanks guys

    You are welcome Miss Modular.
    Even on web jobs people do not use that option too often, so really wish they would not assign a keyboard command to that, which is what I suspect happened to you.

  • Hi. How I can find other files and remove them?

    I have 42 GB of other storage, how can I delete it? I dont believe that osx is 40 GB large. Waiting for some advice, searched the web, but there is nothing really helpful.

    "Other" is the category when a file is not one of the other categories (Audio, Movies, Photos, Apps or Backups).  So these are files like documents (probably stored in the "Documents" folder for your user).
    You are not really short on disk space... so is there a problem?

  • Cannot uninstall I tunes. In control panel add and remove programs it will not give me the option to remove any of the I tunes. In program files it tells me access denied to remove any of the related items. I have tried using the removal methods from i tu

    My i tunes will not work at all. I have tried all the steps given to remove my I tunes player but in my control panel, add and remove programs it does not give me an option to remove any of the apple/ I tunes. I tried to go to program files and remove all the files but access is denied. This all started about 1 1/2 years ago and with every i tunes update i got more and more errors or problems until it stopped working. At one time i could remove and reinstall i tunes to try to fix it but now i cannot do anything. I believe one of the last  was i could not open i tune because it was being used or was on another network, not 100% sure its been so long and frustrating I quit trying 6 months ago. Hopefully someones got some help !!!
    Thanks I appreciate your time; Philip

    See Troubleshooting issues with iTunes for Windows updates.
    tt2

  • How do I find and remove hidden files

    For some reason, after the recent install of SL my 1TB drive is extremely bloated. I have deleted or moved just about everything possible from the disk (excluding system files and applications) and it still shows that I only have 94.08 GB of space available.
    Is there a good piece of software out there that will help me to find out if there are several hidden files and remove what is unnecessary?

    Wow ... that was enlightening. I discovered that somehow there is a hidden folder on the 1TB drive entitled "volumes" and within that folder is a subfolder entitled "Mega Drive" (my self-titled name for the 1TB boot drive), which is an exact duplicate of my previous hard drive.
    A little more about how I got here. I had to computer in to the Apple Store, after upgrading to SL, for what I initially though was a hardware issue. The Genius felt it was software, did an erase and install. When I got the macing back I tried to us Migration Assistant to copy files from my Time Machine drive, it took all night so I wasn't awake when it finished. I suspect that is where this folder came from, as the next day I could not find the information on my computer, so I started manually moving the files from that drive.
    The bottom line is this ... is it safe to remove trash this entire folder?

Maybe you are looking for