- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Probably ippiAlphaCompC function will match your requirement. This function is basically combines two images using constant alpha values.
Please refer to ippidemo.exe inside the IPP installation folder. Open an image, then select Process->Process by -> Logical& Alpha comp->Alpha Composition, then setect ippiAlphaCompC function and second image.
To get more information about this function refer to - http://software.intel.com/sites/products/documentation/hpc/ipp/ippi/ippi_ch5/functn_AlphaCompC.html
Thanks,
Naveen Gv
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Probably ippiAlphaCompC function will match your requirement. This function is basically combines two images using constant alpha values.
Please refer to ippidemo.exe inside the IPP installation folder. Open an image, then select Process->Process by -> Logical& Alpha comp->Alpha Composition, then setect ippiAlphaCompC function and second image.
To get more information about this function refer to - http://software.intel.com/sites/products/documentation/hpc/ipp/ippi/ippi_ch5/functn_AlphaCompC.html
Thanks,
Naveen Gv
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
HI there
I have encountered the same problem.I have tried to merge the image using this code which is from google:
namespace WindowsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } public static string FolderName = "c:/"; private void button1_Click(object sender, EventArgs e) { string fileName1 = FolderName + "Sample1.tif"; string fileName2 = FolderName + "Sample2.tif"; string fileNameMerged = FolderName + "Merged.tif"; REDocument doc1 = REFile.OpenDocumentFile(fileName1, new TIFDecoder());//use TIFDecoder open one tif file REDocument doc2 = REFile.OpenDocumentFile(fileName2, new TIFDecoder());//use TIFDecoder open another tif file BaseDocument docMerged = doc1.MergeDocument(doc2);//merge tiff image REFile.SaveDocumentFile((REDocument)docMerged, fileNameMerged, new TIFEncoder());//save new tif
But it display nothing.What's wrong with my code?I know there are many third party program for image processing.So is there any powerful image program which supports to merge image directly.Thanks for any suggestion.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Marrisa,
your question is not related to IPP, guess it's for another forum...
regards, Igor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This Image Processing Library integrates mature and reliable functions for developers to merge images. You are capable of merging two or more image files into one.
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page