ImageEn

TIEVisionImage.smooth Code Samples


Code samples for smooth.
Automatically generated by the Every Method demo.
// Automated test of smooth - Typical Values
// TIEVisionImage.smooth - ievBILATERAL - Kernel Size: 3
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 3, 3 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Alpha Channel - Typical Values
// TIEVisionImage.smooth - ievBILATERAL - Kernel Size: 3
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 3, 3 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Bilateral - Typical Values
// TIEVisionImage.smooth - Bilateral - 5, Sigma: 30
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 5, 0, 30, 30 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Bilateral - Alpha Channel - Typical Values
// TIEVisionImage.smooth - Bilateral - 5, Sigma: 30
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 5, 0, 30, 30 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Random Values
// TIEVisionImage.smooth - ievGAUSSIAN - Kernel Size: 17
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievGAUSSIAN, 17, 17 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Alpha Channel - Random Values
// TIEVisionImage.smooth - ievGAUSSIAN - Kernel Size: 17
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievGAUSSIAN, 17, 17 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Bilateral - Random Values
// TIEVisionImage.smooth - Bilateral - 10, Sigma: 130
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 10, 0, 130, 130 );
ImageEnView1.Update(); // Show changes in our viewer



// Automated test of smooth - Bilateral - Alpha Channel - Random Values
// TIEVisionImage.smooth - Bilateral - 10, Sigma: 130
ImageEnView1.IEBitmap.GetIEVisionImage().smooth( ievBILATERAL, 10, 0, 130, 130 );
ImageEnView1.Update(); // Show changes in our viewer