←Select platform

IntelligentUpScaleCommand Constructor(RasterImage,RasterColor,RasterColor,bool,bool,int,int,int,int,int)

Summary
Initializes a new IntelligentUpScaleCommand class object with explicit parameters.
Syntax
C#
C++/CLI
Python
public: 
IntelligentUpScaleCommand(  
   RasterImage^ maskImage, 
   RasterColor removeObjectColor, 
   RasterColor preserveObjectColor, 
   bool useRemoveObjectColor, 
   bool usePreserveObjectColor, 
   int newWidth, 
   int widthUpScalingFactor, 
   int newHeight, 
   int heightUpScalingFactor, 
   int upScalingOrder 
) 

Parameters

maskImage
RasterImage object that references mask image.

removeObjectColor
RasterColor value that specifies color of the area in the mask image to be removed. It has to be different than the other image colors. If no remove color exists, then pass null.

preserveObjectColor
RasterColor value that specifies color of the area in the mask image to be removed. It has to be different than the other image colors. If no remove color exists, then pass null.

useRemoveObjectColor
True to use the removeObjectColor parameter otherwise it is false.

usePreserveObjectColor
true to use the removeObjectColor parameter otherwise it is false.

newWidth
New width. Range from 1 to width of the image less 1.

widthUpScalingFactor
Number of the upscaling process stages for the new width to be achieved.

newHeight
New height. Range from 1 to height of the image less 1.

heightUpScalingFactor
Number of the upscaling process stages for the new height to be achieved.

upScalingOrder
Flag that determines whether processing will start with the width first and then the height or vice versa. Pass 0 to start with the height or pass 1 to start with the width.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.SpecialEffects; 
 
 
public void IntelligentUpScaleCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Sample3.cmp")); 
 
   IntelligentUpScaleCommand command = new IntelligentUpScaleCommand(); 
   command.UpScalingOrder = 1; 
   command.NewWidth = image.Width + 100; 
   command.NewHeight = image.Height; 
   command.UsePreserveObjectColor = false; 
   command.UseRemoveObjectColor = false; 
 
   // Apply the intelligent UpScale on the image. 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "IntelligentUpScaleResult.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.SpecialEffects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.