How do I combine selections from various photos into a single picture?

I can't figure out how to open several pictures at once and then select sections from them and put the selections into one complete photo.  Can someone tell me how to do this?

Hi T.Bux and welcome to the forum.
This video tutorial should help you with basic photo compositing:

Similar Messages

  • How to do a SELECT from different tables into an internal table?

    How to do a SELECT from different tables into an internal table?
    I want to select data from MARA, MARC and ZPERSON and populate my ITAB_FINAL
    REPORT  zinternal_table.
    TABLES:
      mara,
      marc,
      zperson.
    TYPES:
    BEGIN OF str_table1,
      v_name LIKE zperson-zname,
      v_matnr LIKE marc-matnr,
      v_emarc LIKE marc-emarc,
      v_werks_d LIKE marc-werks_d,
      v_dstat LIKE marc-dstat,
      END OF str_table,
      i_table1 TYPE STANDARD TABLE OF str_table1.
    DATA:
    BEGIN OF str_table2,
    v_mandt LIKE mara-mandt,
    v_ernam LIKE mara-ernam,
      v_laeda LIKE mara-laeda,
    END OF str_table2,
    itab_final LIKE STANDARD TABLE OF str_table2.

    first find the link between mara , marc and zperson , if u have link to 3 tables then u can jus write a join and populate the table u want ( thats final table with all the fields).
    u defenitely have alink between mara and marc so join them and retrieve all data into one internal table.
    then for all the entries in that internal table retrieve data from zperson into another internal table.
    then loop at one internal table
    read another internal table where key equals in both the tables.
    finally assign fileds if sy-subrc = 0.
    gs_finaltable-matnr = gs_table-matnr
    etc...
    and finally append gs_finaltable to gt_finaltable.
    there u go ur final table has all the data u want.
    regards
    Edited by: BrightSide on Apr 2, 2009 3:49 PM

  • How To Concatenate Column Values from Multiple Rows into a Single Column?

    How do I create a SQL query that will concatenate column values from multiple rows into a single column?
    Last First Code
    Lesand Danny 1
    Lesand Danny 2
    Lesand Danny 3
    Benedi Eric 7
    Benedi Eric 14
    Result should look like:
    Last First Codes
    Lesand Danny 1,2,3
    Benedi Eric 7,14
    Thanks,
    David Johnson

    Starting with Oracle 9i
    select last, first, substr(max(sys_connect_by_path(code,',')),2) codes
    from
    (select last, first, code, row_number() over(partition by last, first order by code) rn
    from a)
    connect by last = prior last and first = prior first and prior rn = rn -1
    start with rn = 1
    group by last, first
    LAST       FIRST      CODES                                                                                                                                                                                                  
    Lesand         Danny          1,2,3
    Benedi         Eric           7,14Regards
    Dmytro

  • How Can I Combine Podcasts from Two Computers Into One ?

    I download podcasts on two computers - my home PC and my work/travel laptop. My IPod syncs to my home PC. What I would like to be able to do is transfer all the podcasts I have downloaded from my laptop to my home PC (as my internet speed at home isn't great), then sync it all to my IPod. Is this possible ?

    Well it works.....sometimes. It works OK with audio podcasts, but not with *.mov video podcasts. It DOES work with *.M4V video podcasts. I found this out by trying to add all the Tiki Bar TV files, and only the Boomerang episode transferred OK.
    The strange thing is this - while the *.MOV vpodcasts don't show up in the Podcast window in ITunes, they DO transfer over and show up in Library>Genre 'Podcasts'>. How can I force them to appear in the Podcasts window ?
    Cheers
    Blewyn

  • Combine Accounts from different Generations into a single Table Prompt

    We are on OBIEE 11.1.1.6.2 and using an ASO (11.1.2.1) cube as a datasource.
    I wish to make a drop down menu of only ten accounts in OBIEE. These ten accounts do not all belong in the same generation. The desired Accounts are from Gen6, Gen5 and Gen4. How do I make a single drop down list with these ten accounts when the members belong to different generations ? I have tried building this custom list of ten accounts via Selection Steps but it seems that I cannot cross different generations of the Account dimension.
    Any help would be appreciated.

    Thanks for the reply Christian. I literally tried at least 100 possible iterations of the Evaluate statement and none of them will compile in OBIEE. Before posting, I scoured the Internet for days hoping someone else has had this issue resolved. I had no luck. If you know of anyone that has actually been successful with the EVALUATE statement to make a list of dimension members from different generations, please post the exact code snippet so that I can leverage off of somone else's knowledge.
    I have tried dozens of possible iterations of: with no luck at all.
    EVALUATE('Intersect(%1.dimension.members,{[Account1], [Account2]})',"Account"."Gen1,Account")

  • Combining information from multiple images into a single output

    So I'm working on a class that takes input from three buffered images. The buffered images I will be using were covered in some detail [Here in this thread|http://forums.sun.com/thread.jspa?threadID=5401006&tstart=0] for the sake of reference.
    I'll be providing 3 buffered images where the value of every pixel is the ID of the cluster. What I'm planning on doing now is looking at each cluster in each of the 3 buffered images I give the class to process.
    public BufferedImage amalgamate(BufferedImage hueTemp, BufferedImage contrastTemp, BufferedImage textureTemp){
            imgWidth = hueTemp.getWidth();
            imgHeight = hueTemp.getHeight();
            hueRaster = hueTemp.getRaster();
            contrastRaster = contrastTemp.getRaster();
            textureRaster = textureTemp.getRaster();
            amalgamImage = new BufferedImage(imgWidth, imgHeight, BufferedImage.TYPE_INT_RGB);
            amalgamWriter = amalgamImage.getRaster();
            imagePixelCount =  imgHeight * imgWidth;
            for (int x = 0; x < imgWidth; x++)
            for (int y = 0; y < imgHeight; y++) {           
                // assigns pixel values from each buffered image
                hueValue = hueRaster.getSample(x, y, 0);
                contrastValue = contrastRaster.getSample(x,y,0);
                textureValue = textureRaster.getSample(x, y, 0);
                // reset values of integers storing pixel counts
                huePixelCount = 1;
                contPixelCount = 1;
                textPixelCount = 1;
                //. loop iterates through images and produces a pixel count for each of the
                //currently assign pixel values (each pixel value is also used as
                // the ID for each cluster)*/
                for (int i = 0; i < imgWidth; i++)
                for (int j = 0; j < imgHeight; j++) {
                    if (hueRaster.getSample(i, j, 0) == hueValue) huePixelCount ++;
                    if (contrastRaster.getSample(i, j, 0) == contrastValue) contPixelCount ++;
                    if (textureRaster.getSample(i, j, 0) == textureValue) textPixelCount ++;
                }//end of i,j loop
                // this section will determine is the cluster is valid (i.e. makes up
                // more than 5% of the total percentage of pixels in the image)
                if (huePixelCount >= (imagePixelCount * 0.05)) hueValidCluster = true;
                if (contPixelCount >= (imagePixelCount * 0.05)) contValidCluster = true;
                if (textPixelCount >= (imagePixelCount * 0.05))  textValidCluster = true;
                //loop iterates and the Writable Raster will set the pixel values
               // of the output image to red, green or blue for Hue, contrast and
               //texture respectively and set all other pixels to black.
              //I'm using RGB so that I can use a different channel value for
              //each of the three, so that overlap will result in a new colour
              //(overlap between all 3 should = white pixel)*/
                for (int a = 0; a < imgWidth; a++)
                for (int b = 0; b < imgHeight; b++) {
                    //This is my original method I devised
                    if (hueValidCluster == true && hueRaster.getSample(a, b, 0) == hueValue) amalgamWriter.setSample(a, b, 0, 256);
                    else amalgamWriter.setSample(a,b,0,0);
                    if (contValidCluster == true&& contrastRaster.getSample(a, b, 0) == contrastValue) amalgamWriter.setSample(a,b,1,256);
                    else amalgamWriter.setSample(a,b,1,0);  
                    if (textValidCluster == true&& textureRaster.getSample(a, b, 0) == textureValue) amalgamWriter.setSample(a,b,2,256);
                    else amalgamWriter.setSample(a,b,2,0);
                  //When the image returned a completely black output I tried a different
                  //approach along these lines assuming the .setPixel method
                 //would have done what I wanted.
                  if (hueValidCluster == true && hueRaster.getSample(a, b, 0) == hueValue) amalgamWriter.setPixel(a, b, redArray);
                    else amalgamWriter.setPixel(a,b,blackArray);
                }//end of a,b loop
                //Reset booleans for next pixel in the original x,y loop.
                //I've been using ping to make sure the thing doesn't crash while it's running.
                hueValidCluster = false;
                contValidCluster = false;
                textValidCluster = false;
                ping++;
                System.err.println(""+ ping);
            }//end of x,y loop
            return amalgamImage;
        }//end of amalgamate method
    }//end of AmalgamationAs previously hinted the class seems to run to completion, but the image returned is always black so the pixels aren't being set or they're somehow being reset?
    If the error is due to me setting the pixels in the output image incorrectly then the root of the problem is temporarily eluding me.
    I'm not sure if there are compatability problems between USHORT (which is the format the input images are in) and an INT_RGB BufferedImage which could be the cause so I thought I'd mention that.
    It's also crossed my mind that in using a loop inside a loop inside a loop I possibly have done something wrong there.
    Thought I'd throw this problem out there. I've been de-bugging this one for a while.

    amalgamWriter.setSample(a, b, 0, 256);
    amalgamWriter.setSample(a,b,1,256);
    amalgamWriter.setSample(a,b,2,256);For the image type you are using, you only have 8 bits of precision each color channel. That means only a number in the range [0,255] is valid for the sample. The value 256 is equivalent to setting the sample to 0. That is ((byte) 256) = 0.

  • How do I combine more than 12 files into one PDF file?

    How do I combine more than 12 files into a single PDF? That's why I upgraded to Adobe XI Pro.

    Hi Marshall32,
    If you have Acrobat Pro, you can combine more than 12 files by choosing File > Create > Combine Files into a Single PDF. The 12 file limitation is only imposed by Adobe PDF Pack online service. Acrobat itself doesn't have such a limit.
    (If you haven't already, you can download Acrobat from here: https://cloud.acrobat.com/acrobat.)
    Best,
    Sara

  • TA22992 Trying to sync new photos from iphoto withou having the old photo synced on ipad2 but when I select sync from iphoto the old photos are already included. How do I stop itunes from preselecting photos? Already try "selected albums, events, etc" no

    Trying to sync new photos from iphoto without having the old photo synced on ipad2 but when I select sync from iphoto the old photos are already included. How do I stop itunes from preselecting photos? Already tried selecting "selected albums, events, and faces, and automatically include" then I enter "no Events" with no success the photos still are being synced along with the new photos. I want to be able to add new photo and remove old photos. Please help this has taken a lot of my time trying to figure it out.

    If I knew the answer I would have given it - but since it is not an iPhoto question I suggested
    You might try the iPad forum - or the iTunes forum - this really is not an iPhoto question
    LN

  • Re: Trying to sync new photos from iphoto withou having the old photo synced on ipad2 but when I select sync from iphoto the old photos are already included. How do I stop itunes from preselecting photos? Already try "selected albums, events, etc" no succ

    Trying to sync new photos from iphoto without having the old photo  synced on ipad2 but when I select sync from iphoto the old photos are  already included. How do I stop itunes from preselecting photos? Already  tried selecting "selected albums, events, and faces, and automatically  include" then I enter "no Events" with no success the photos still are  being synced along with the new photos. I want to be able to add new  photo and remove old photos. Please help this has taken a lot of my time  trying to figure it out.

    If I knew the answer I would have given it - but since it is not an iPhoto question I suggested
    You might try the iPad forum - or the iTunes forum - this really is not an iPhoto question
    LN

  • How do I delete videos from my photo library on Iphone 4s?

    How do I delete videos from my photo library on my Iphone 4s?

    Uncle-George wrote:
    If so, to remove the videos from the iPhone, I would set up sync to only sync pictures and videos checked.  At that point, the iPhone would no longer have the videos on the new sync, but the iMac would still retain the videos.  Sound close?
    If it turns out that the movies are syncing from your iMac to your iPhone through iTunes, then I would think it is just a matter of changing your sync selection to remove the video(s) from your iPhone.
    However, you may find that you may need to change your sync settings to not sync any photo/video content, perform a sync, then select a different source of photos to sync (optionally of course).
    I'm new to Mac so I can't say for sure if it is what I'm used to, but on my PC if I wanted to remove photos or videos that I had synced to my iPhone through iTunes I had to first sync no photo/video to remove them, then either sync to a different folder or move the undesired items out of the folder I was syncing to.
    But I no longer sync photo/video through iTunes, and have changed to a Mac Air so things may be different.  But the key is whether or not these undesired movies are actually synced to your iPhone through iTunes (sounds like they are).

  • How do you combine pages from separate PDFs?

    How do you combine pages from separate PDF files into one document?

    I use Adobe Acrobat for this.

  • How can i combine a b/w photo with a color photo? [was: Photoshop 5.5]

    How can i combine a b/w photo with a color photo?

    Edit the color document. Then Copy, or Place or Paste in the Grayscale image and mask the BW to create a composit.

  • How do i get pics from my photo album on my old *** laptop to my phone?

    How do I get pics from my photo album on my old *** laptop to my phone?

    You use iTunes to sync the Photos over.
    iTunes: Syncing photos - Support - Apple

  • How do I delete duplicates from my photo library.  I am sure I let the duplicates happen but do not know how to get rid of them.

    How do I delete duplicates from my photo library?  I am sure I let the duplicates happen but do not know how to get rid of them.

    For dealing with duplicates in iPhoto check out Duplicate Annihilator

  • How do I import video from Sony TRV22E into iMovie ?

    How do I import video from Sony TRV22E into iMovie ?

    Hi
    Sony TRV22E - CAN ONLY export the VIDEO material via a FireWire Cable (iLinc)
    Then Your Mac need eiter
    - a FireWire port - or -
    - a Thunderbolt port
    if only Thunderbolt - Then You need a FireWire to Thunderbolt converter.
    The USB- can only copy over the Still photos You also cam take with Your Camera. Will NEVER work for Video Export.
    Yours Bengt W

Maybe you are looking for