Merging Images

I'm planning on purchasing a macbook or macbook pro very soon, and wanted to add Aperture, but one of the reviews freaked me out, it said they were unable to merge images to form a panorama. is this really true? I figured aperture was like adobe photoshop or paint shop pro where merging images is not a problem, does anyone out there know?

Yes, Aperture for cataloging, editing, sorting, quantities of images,some nice exposure control, web page creation, email to client directly from Aperture, stacks for your use if you are working through images and picking the best of similar shots... a lot of neat stuff like that, but no significant pixel level editing at this point. Aperture does however work nicely with Photoshop.. you can open a file from Aperture, directly into Photoshop, modify it, and the corrected image will be saved as a nice shiny new file in Aperture library, with all of your Photoshop modifications. Your original file (the one you opened in Photoshop from Aperture) will be untouched. Buy both applications... good idea.

Similar Messages

  • Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix.

    Photomatix plug-in's HDR merged image has suddenly stopped showing up as part of the stack, yet when I repeat the merge it warns that these images are already merged. I have the merged image labeled with a HDR suffix. Worked fine until now. Thanks

    I am not sure what's happening with IE9 (no live site) but I had real problems viewing your code in Live View - until I removed the HTML comment marked below. Basically your site was viewable in Design View but as soon a I hit Live view, it disappeared - much like IE9. See if removing the comment solves your issue.
    <style type="text/css">
    <!-- /*Remove this */
    body {
        margin: 0;
        padding: 0;
        color: #000;
        background:url(Images/websitebackgroundhomee.jpg) repeat scroll 0 0;
        font-family: David;
        font-size: 15px;
        height:100%;

  • Is it possible to mail merge images?

    Can you mail merge images from a Numbers spreadsheet into Pages instead of selecting an image from the media inspector?

    Jen,
    That's not supported, as far as I know. Interesting idea though.
    Jerry

  • Merge acting odd. Merges image in front of some and behind others.

    I use the Merge with background function A LOT and have never had an issue... until today.
    Suddenly, when I select Merge (or CTRL + M) the image I am trying to merge is only 'partially' merging. Oddly enough it is being placed in front of one image on the slide and behind another image on the slide. Super weird.  I am expecting it to just place it in front of everything as it usually does.  I am dumbfounded. 
    I have combed thru the forum for an answer but I cant find an answer.
    NOTE: I do NOT have "Use Master Slide Background" selected (.... and never have had it selected as I dont work with Master slides). I have also closed and reopened CP6 and rebooted my computer.

    Rod,
    I do not have Master Slide Objects On Top selected either.
    For now I am going to leave the image in the timeline to cover the old image but I still just dont understand why/how Master slides would have anything to do with why trying to merge the image is acting so strange.
    I continues to place the merged clipart between other images that are part of the original slide... like a deck of cards and placing the merged image between two other cards.
    Lilybiri - Do you have any suggestions on what I might do with Master Slides to get the Merge to function?
    Thanks

  • Photoshop - combine red and green channel images into a merged image?

    Hi,
    I am a developmental biologist carrying out experiments on a type of microscope known as a Confocal Laser Scanning Microscope (CSLM).  Basically, this is a microscope coupled to some lasers which allow fluorescently-labelled parts of a biological sample to be imaged in high detail.
    For each sample there will be a set of two images produced, named and numbered as follows:
    sample01_g.tif
    sample01_r.tif
    Each image represents one fluorescent wavelength and correspond to green ( g ) and red ( r ).  These images are in rgb colour.
    I want to produce a merge of these two channels to generate a new TIFF file such that:
    Green channel is taken from sample01_g.tif
    Red channel is taken from sample01_r.tif
    Which would show me how the different channels co-localise, or not.
    This is fine to do by hand in Photoshop, but takes a long time when you have a couple of hundred images to process.  So, what I would like to do is write a script that batch automates the process, like a droplet.  I have the process outlined below:
    Create a new RGB TIFF called sample01_merge.tif
    Take the green channel from sample01_g.tif and copy it to the green channel of sample01_merge.tif
    Take the red channel from sample01_r.tif and copy it to the red channel of sample01_merge.tif
    Save sample01_merge.tif into a folder named "Merged Images" on the desktop
    Close the opened images
    Go to next set of images –> sample02_g.tif and sample02_r.tif
    Create a new RGB TIFF called sample02_merge.tif....and go through step 2-6, untill the last set of images has been processed.
    I have never used script before and would love to learn, but I am making slow progress and would like to have this problem solved sooner than I will be able to do so by myself.  So... I was wondering if anyone could give me some advice on how to go about doing this?
    Any help will be greatly appreciated!
    I use a Mac Pro running OSX 10.8.3 and Photoshop CS6 Extended
    Best regards,
    John

    Yes, as I said it wasn't finished and wasn't meant to be used. It was just to show that working with image sets based on a name pattern is easy.
    Here is a version that does do the merge and save using applyImage.
    Note: for applyImage to work the images in each set need to be the same size. Some of your jpeg samples were not. This worked with one set by not the other.
    // make a reference to the savedFolder
    var savedFolder = new Folder('~/desktop/Merged Image');
    // create the folder if it doesn't exists
    if(!savedFolder.exists) savedFolder.create();
    // get the source folder from the user and store in variable
    var sourceFolder = Folder.selectDialog();
    // make sure user selected a folder
    if(sourceFolder != null){
        // get an array of red images and store in variable
        var sourceFiles = sourceFolder.getFiles(/_r\.tif$/i);
        // make a loop to process all found sets.
        for(var i = 0; i < sourceFiles.length;i++){
            var redName = sourceFiles[i].name;
            var greenName = redName.replace('_r','_g');
            var redImage = open(sourceFiles[i]);// open the red file and store reference to document
            var greenImage = open(new File(sourceFolder+'/'+greenName));// open the green file and store reference that document
            // now select each channel and apply matching channel in redImge using lighten mode
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Red=Red'))];
            applyChannel( charIDToTypeID( "Rd  " ), redImage.name );
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Green=Green'))];
            applyChannel( charIDToTypeID( "Grn " ), redImage.name );
            app.activeDocument.activeChannels = [app.activeDocument.channels.getByName(localize('$$$/ColorModes/RGB/ChannelName/Blue=Blue'))];
            applyChannel( charIDToTypeID( "Bl  " ), redImage.name );
            // select the componet channel( rgb )
            selectComponentChannel();
            // save the merged document
            SaveAsTIFF(savedFolder+'/'+redName.replace(/_r\.tif$/i,'_merged.tif'),true);
            // close the open documents for next loop
            redImage.close(SaveOptions.DONOTSAVECHANGES);
            greenImage.close(SaveOptions.DONOTSAVECHANGES);
    function applyChannel( channelID, documentName ){
        // charIDToTypeID( "Rd  " )
        // charIDToTypeID( "Grn " )
        // charIDToTypeID( "Bl  " )
        var desc = new ActionDescriptor();
        var channelsDesc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID( "Chnl" ), charIDToTypeID( "Chnl" ), channelID);
        ref.putProperty( charIDToTypeID( "Lyr " ), charIDToTypeID( "Bckg" ) );
        ref.putName( charIDToTypeID( "Dcmn" ), documentName );
        channelsDesc.putReference( charIDToTypeID( "T   " ), ref );
        channelsDesc.putEnumerated( charIDToTypeID( "Clcl" ), charIDToTypeID( "Clcn" ), charIDToTypeID( "Lghn" ) );
        channelsDesc.putBoolean( charIDToTypeID( "PrsT" ), true );
        desc.putObject( charIDToTypeID( "With" ), charIDToTypeID( "Clcl" ), channelsDesc );
        executeAction( charIDToTypeID( "AppI" ), desc, DialogModes.NO );
    function SaveAsTIFF( inFileName, inLZW ) {
        var tiffSaveOptions = new TiffSaveOptions();
        if ( inLZW ) {
            tiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;
        } else {
            tiffSaveOptions.imageCompression = TIFFEncoding.NONE;
        app.activeDocument.saveAs( File( inFileName ), tiffSaveOptions );
    function selectComponentChannel() {
        try{
            var map = {}
            map[DocumentMode.GRAYSCALE] = charIDToTypeID('Blck');
            map[DocumentMode.RGB] = charIDToTypeID('RGB ');
            map[DocumentMode.CMYK] = charIDToTypeID('CMYK');
            map[DocumentMode.LAB] = charIDToTypeID('Lab ');
            var desc = new ActionDescriptor();
                var ref = new ActionReference();
                ref.putEnumerated( charIDToTypeID('Chnl'), charIDToTypeID('Chnl'), map[app.activeDocument.mode] );
            desc.putReference( charIDToTypeID('null'), ref );
            executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
        }catch(e){}

  • HDR Pro on CS 5 - Merged image appears but bottom with save buttons cut off??

    When I select photos to merge, either via Bridge or within CS5 (Automate/Merge to HDR Pro), the Merged image appears over the CS5 screen.  However, the bottom of the HDR screen with the photos selected for the merge along with the Cancel & Save buttons are cut off.  The only way for me to exit HDR is to force quit.
    My monitor resolution is 1440X900 which is better than the 1024x768 required for CS5.
    I noticed the same problem in Terry White's video on Youtube describing workflow between Lightroom & CS5 HDR Pro (http://www.youtube.com/watch?v=rab25UTe6HY) as well as a couple of other users mentioning the problem to Zeno Bokor of Adobe (http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-78e5a.h tml).
    Does anyone have a solution???
    Thanks.

    I found the soluion - after spending over an hour with Adobe phone support (800-833-6687) - of which 45min was being on hold.
    It turns out that for some computers, Photoshop CS5 doesn't automatically work as efficiently as it could with the monitor resolution, even if the resolution is > than the minimum 1024 X 768.  This is more frequent in those that have had older versions of Photoshop in them. This causes part of the screen to be cut off when going into HDR Pro.
    One has to "prime" CS5 to recognize one's computer monitor settings.  How to do:
    Close out of PS CS5
    Go to system preferences and select hardware settings/display (For PC would have to go through Control Panel/Hardware/Display)
    Change monitor setting to one recommended by Adobe: 1024 X 768 or 1280 X 800
    Save changes.  Monitor will look less clear if you have been using higher settings...it's ok for now.
    Now open CS5 again and access HDR Pro all three ways available, i.e. via Bridge, Mini Bridge and through PS under File/Automate. 
    Verify that the entire screen is visible including all thumbnails and Save/Close buttons.
    Close out of CS5.
    Go back to System Preferences ( for PC, go through Control Panel) and change back to your preferred resolution.
    Voila! When you open CS5 again you should be able to see the entire screen.
    For example, I use a Macbook Pro with OS 10.6.7 and the monitor resolution  was set to 1440 X 900.  However, I still couldn't see the bottom of the  screen with the Save/Close buttons so couldn't save any work (had to  force quit or escape to exit HDR).  After doing the above steps, I am now able to use HDR Pro w/o problem and access the Merge via all three modes.
    Via  Mini Bridge - Choose photos to merge--> Tools (above photos, last on right in Content bar) --> Photoshop --> Merge to HDR Pro
    Via Bridge - Choose photos to merge--> Tools (Tool Bar beside "Adobe CS5 Bridge" at left top of screen; 3rd from end) --> Photoshop --> Merge to HDR
    Via inside Photoshop - File --> Automate -->  Merge to HDR
    Since this seems to have affected several people and is a simple solution, I have asked the supervisor I spoke to, Laurie, to please have someone in Adobe post this solution.
    Hope this helped.
    MJC

  • Merged images

    I want to know the process for merging 2 images in Lightroom.
    Now I know this is not yet possible within Lightroom.
    In my examle I've taken 2 images, one exposed for highlights, the other for shadows. In essence a digital GND filter.
    What would the process be in Lightroom.
    Do I adjust the 2 RAW files first
    bring them into Photoshop and merge image
    reimport into Lightroom
    or is there a better solution to this.

    Use Photoshop's File > Automate > Merge to HDR to take advantage of the differing exposures of the two RAW images. Lightroom doesn't have any tools for combining image data from two images.

  • Data Merge Image Alignments

    Greetings,
    I'm turning to this forum, as nothing I've tried has worked.  In a data merge using only merged images from a CSV Excel Workbook, everything is displaying generally the way I want.  But in one of the frames with a merged image the images will NOT align to the bottom of the frame!  I've tried setting the frame fitting properties *before* placing the image merge field into the frame.  I've tried selecting the previewed, linked image and configuring that.  Tried dragging the image. Nothing!  When I toggle the preview to refresh, it jumps right back up to the top left of the frame.
    I know this is not the most widely used practice in InDesign.  But any ideas would be appreciated!
    Thanks!
    Bill

    Thanks Mike!  Very kind of you to check back in.  I'm working with version 7.5.3 from CS 5.5 on a Mac.  I made sure it was up to date, and tried a couple more obvioius things.  But still nothing.  I can achieve my end without aligning the image to the bottom of the frame.  But the results are less than optimal.  I always become obsessed with this kind of thing until I can find an answer or a workaround.  One idea I thought might be interesting is to establish a grid and attempt to anchor the image to that grid.  But what makes this especially challenging is that we are dealing with variable image sizes that are linked to files on my hard drive.  If this were a static page, I"d be long done with this.  :-)
    To be clear about what I'm doing, I've hand-written variables from a contact list and scanned those contact variables (address, full name, salutation, greeting) into coorisponding directories on my hard drive.  On both the inside of a card as well as the outside of an envelope, I have two VDP frames, one above the other respectively.  In the case of the envelope, for example, I'd like the top frame that contains the contact's full name to format so the full name image sits on the bottom of its frame, so I can control how closely it displays above the frame containing the address below it.
    Anyway, still unsolved.
    Thanks again for checking back!
    Bill

  • Data Merge Image Paths

    I'm using CS5 on Mac OS 10.5 and 10.6 at work (I'm at home now, so I can't be more specific at the moment), and experimenting with Data Merge. I place an image, and use the "copy full path" feature in the links manager and paste it into my spreadsheet. When I do the actual merge, it works (the image is imported with the merge) if the path leads to a folder on my hard drive, but not if the path leads to an external drive.
    Does anyone know if the path that the links manager creates is the wrong syntax for using data merge? If so, is there some place where I can read the "rules" of how the text string should look?

    Yes!! It is so frustrating! I have to use my old version of InDesign (CS5) to do all my data merges that have images saved in multiple folders.
    If anyone has any ideas see below for the image error message that I, and my whole art department staff, get in CC 2014.
    I have read through this thread and tried all suggestions... Please help!!
    Data Source File: Karns TV Template-Week 219.csv
    Target Document: Top10TV - Small.indd
    Report Generated: 2/2/15 9:22 AM
    1) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Seafood:Salmon Fresh Chilean Fillets.jpg
    2) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Pork Loin Whole Bone in Raw.jpg
    3) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Chicken Leg Quarter-Raw on Cutting Board.jpg
    4) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:New-York-Strip-Steak-USDA.psd
    5) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Meat-NEW:Pork Chops Center Cut Rib.jpg
    6) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Deli-NEW:Roast Beef Sandwich.eps
    7) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Produce-Veggies:Apples-Variety.jpg
    8) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Beverages:Nestle Pure Life Water 24 count 16.9 oz 6827493471.eps
    9) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Dairy:Sargento Shredded Cheese Mozzarella 8 oz.eps
    10) Volumes:ArtClients:GROCERY STORE SIGNAGE::-Grocery Photos:Baking Goods:Essential Everyday Pure Granulated Sugar 4 Lbs 4130301545.eps

  • Merge to Panorama creates a split image of the whole merged image

    When I attempt to create a Panorama using "Merge to Panorama"/Auto with 11 CR2 RAW photos from my Canon 5d Mark ii the result is that I get a split image: 5 photos merged on the top of the canvas, and 6 merged on the bottom. I am using the most recent versions of Photoshop CC 2014 and a Mac Pro with OS 10.9.5. The same thing happens with "Perspective" rather than "Auto". Is there a size limit to how big the merged photo can be?

    Disk Utility>Restore will copy the OSX, the Recovery Partition and ALL user data.  It will be an identical copy of the internal HDD.
    Third party software such as Carbon Copy Cloner can also perform that same function, but also allow for incremental changes.
    Ciao.

  • Using Photoshop SDK to merge images in Web Application

    Hi,
    More of a query than an issue. We have an ASP.NET Web application - and our client has asked that we provide the facility to merge two images on the site. Basically, a user uploads their photo to the site - and then can choose to insert it into an e.g. postcard of the Eiffel tower.
    So, we use image layers - where we use Photoshop to create the Eiffel Tower postcard - and then the website user's image is layered behind that in a particular location.
    So, the question - can we use the Photoshop SDK to integrate with ASP.NET to take the website user's image and insert it into the appropriate position on the Eiffer Tower postcard image (using layers).
    Any other suggestion?
    NiallC

    The idea of using Photoshop to power a web application is scary. I
    think Adobe have more suitable tools for this environment (without
    user interface) though I can't bring any names to mind.
    Aandi Inston

  • Data Merge Image Size

    If I create an image frame and place a data merge field in it, when I do the merge, it makes the image the size of the frame (i.e. either enlarged or shrunk to fit). I would like the image to come in at 100% so that I can use the "fit frame to image" command instead of having to first resize the image back to 100%. I've tried messing with the frame fitting options, but nothing seems to be of any use. If I'm missing something, I hope someone can fill me in.
    In the event that there isn't a way, is this something that can be scripted (after the merge, run the script to select all image frames, set the image size to 100% and then scale the frame to the image).

    In my testing, selecting preserve image and frame size and center in frame keptthe frame at the size drawn int the template and centered the image.  Unselecting the center image put the image inthe upper left corner, and it either left the frame alone if it was larger than the image, or expanded it (even off the page) if the image was too large. Most images seem to have been imported at 100%. I still can't explain why a handful are coming in at 50 or 25%, but there was a bug discovered a year or so ago that caused image scaling for particular pixel dimensions for one user (might have been a combination of dimensions and resolution) which might explain it. I'm merging into a 20 x 24 page filling nearly the entire page withthe frame, and there seems to be space to place these files at 100% so it's a puzzle.
    I haven't seen ay images scaled up...

  • "Why would Photomerge Automatically Reduce Merged Images in CS5"

    Hello,
         Man am I hoping that someone out there can help me with something thats I've been racking my brains over trying to figure out for a week now...
         I resently went to New York... I took several, multiple images, from different locations surrounding the city with plans on taking each set and making multiple panoramas from each of the locations that I shot from.
         For the most part "Everything" has been working out just fine. Except for a few images that I didn't apparently have enough "Overlap" for the "Reposition" to do its thing in Photomerge.  I read within these forum pages that it requires about 40% of an overlap in order for Photomerge to see what its looking at.  I also read that the "PhotomergeUI" plugin was available so that I could get the "Interactive Layout" back into CS5.  I used it in the few instances that I needed to, with no apparent problems that was until I attempted to merge panels that I had merged out of 3 or 4 individual images.  I had to use the Interactive Layout in order to merge the 2 panels that I had configured and as it was going through it merging process I watched the lower left status bar go from, for example,.. 18.2 inches - 18.6 inches for each of the 2 panels I was attempting to merge. When the process was completed, the height had gone from the 18.+ inch height, down to 9.2 inch height.  Basically cutting my image size by half !
         I tried the whole process over again with a different set of images that I had taken... The set consisted of 12 images with a Height of 4288 pixels (portrait).  I managed to get 9 of the 12 images merged, keeping the image in the 4000 - 4200 pixels in height... (i don't have a pano head so my camera was leveled by eye)   I then merged the remaining 3 together with no problem... When I went to merge the 3-panel merge with the 9-panel merge the Merge Process did the same thing... I watched the status bar go from 4000 - 4200 for the heights of the 2 panels, down to 2167 pixels once merged! 
         I then tried the whole process over again, doing 2 panels of 6 images... when I got to the last set of 6, my height, again, dropped by half once merged...  So I tried something to see what would happen.  I took the remaining panel of 6 that I merged with no alteration to their height... and reduced them to match the height of the set that had been automatically reduced because of the merge.... I then attempted to merge the 2 panels together, and again, the final merge had the height reduced... this time down to a whopping 2.4 Inches!   From 18 inches in height, down to 2 inches in height, and not once did I ever go near anything that had to do with scale or image height...
    Can someone Please tell me what going on...?   I once did a panoramic in CS4 consisting of " 2 - Rows of 32 Portrait Images ", one row on top of the other... The final panoramic was of a 15 mile stretch of New York that I took 3 years ago... 64 images in total and I never had anything like this happening when it did it... It took me a while, but I never had any issues with Height and therefore overall size being altered as a result of a Photomerge...?...?
    I look forward to hearing some insight...
    ToxicImagery....

    Hi Bob,
    ID CS 5.5 design standard, latest updates running on Mac OSX Lion 10.7.4.
    The screen grab below
    As you can see the links show everything on pg4 are on the doc but from there to pg 12 is saying the links are on the pasteboard.

  • InDesign Data Merge / Image Frame Options

    Hi! I am learning Data Merge and am trying to set-up some product sheets using it. I have done pretty well so far but have an issue with the way images are importing into the different image frames. There are a few different image frames on the layout (main product image, tech drawing, tech icons, etc.), and I need each image frame to have different frame options set.
    So far using the general "Frame Fitting Options" for each has worked for all imported images except for my tech icons (which I can get to import correctly if I choose "Content Placement Options > Fit Frames to Images" from the Data Merge side menu --but when I do this, it applies to all image frames on the page and not just the one selected (which does not work overall).
    Is there another option to get the icon image frames to "Fit Frame to Image" automatically without using the Content Placement Options from the Data merge menu? Is there a way to use the Content Placement Options so it works for individual frames vs all on the layout?
    Any help is much appreciated!
    Liz

    Within the data merge, the frame fitting options apply to all frames that contain variable images, so if you want one variable image to fit image to frame, and another variable image to preserve its size, that cannot be done in the main file, but by manipulating the resulting merge file as P Spier suggests. With Data Merge, there are 8 ways an image can fit inside a frame - see the linked pdf: http://colecandoo.files.wordpress.com/2012/08/framefit.pdf
    This is further complicated when importing ai or pdf images that contain different possible sizes to import (e.g. trim box, bleed box, bounding box, etc). If the "show import options" dialog box is used when placing an image into a data merge file, the settings used in those import options are maintained in the file for the importing of any pdf/ai files via the data merge. What this means is that a data merge containing pdf/ai images can go haywire quickly if the import options change.
    There are some tricks that can be used to control a size of an image in a data merge, provided the images are pdf/ai. If images are being placed by bounding box size in the import options, a way is by drawing a no fill/stroke box behind (or on another layer) of the pdf/ai - this will be used to define the actual size of the image, instead of the top left/bottom right of the image. Similarly, if images are being placed by media box, a similar technique can be used by making the illustrator artboard the size used to define the incoming image size.
    There are also other ways to control the way an image grows/shrinks when importing via the data merge. I have written about that elsewhere, but the trick relies on using making the variable image an anchored object in a larger text frame and controlling its coordinates with text and textbox formatting (e.g. top/bottom/center align; left/right/center, or tab position): Centering “fit frame to images” using InDesign CS6 | Colecandoo!

  • I have and existing collection.  How can I merge images in a Quick Collection into the existing one?

    I wish to add images to an existing collection.  Currently I want to add images in a Quick Collection into an already named collection.  I am using LR3.  How do I do that?

    Select and then right-click the collection that you want the images added into. Select <Set as Target Collection>. A "+" sign appears besides this collection.
    Then select your Quick Collection (or whatever images you want to add to this collection) in the Grid Mode. Click Ctrl/Cmd + A to select all images in this collection. Then press letter "B" on your keyboard. That will add all these images to your target selection.
    WW

Maybe you are looking for