←Select platform

DotRemoveCommand Constructor(DotRemoveCommandFlags,int,int,int,int)

Summary
Initializes a new DotRemoveCommand with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithFlags:(LTDotRemoveCommandFlags)flags minimumDotWidth:(NSInteger)minimumDotWidth minimumDotHeight:(NSInteger)minimumDotHeight maximumDotWidth:(NSInteger)maximumDotWidth maximumDotHeight:(NSInteger)maximumDotHeight NS_DESIGNATED_INITIALIZER; 
public DotRemoveCommand( 
   int flags,  
   int minimumDotWidth,  
   int minimumDotHeight,  
   int maximumDotWidth,  
   int maximumDotHeight 
) 
__init__(self,flags,minimumDotWidth,minimumDotHeight,maximumDotWidth,maximumDotHeight) # Overloaded constructor 

Parameters

flags
Flag that determines the behavior of the dot removal process.

minimumDotWidth
The minimum width of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

minimumDotHeight
The minimum height of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

maximumDotWidth
The maximum width of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

maximumDotHeight
The maximum height of a dot to be removed. If the DotRemoveCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

Example

Run the DotRemoveCommand on an image.

C#
Java
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void DotRemoveConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif")); 
 
   // Prepare the command 
   DotRemoveCommand command = new DotRemoveCommand(DotRemoveCommandFlags.UseSize | DotRemoveCommandFlags.SingleRegion, 1, 1, 10, 10); 
   command.DotRemove += new EventHandler<DotRemoveCommandEventArgs>(DotRemoveEvent_S2); 
   command.Run(image); 
 
} 
 
private void DotRemoveEvent_S2(object sender, DotRemoveCommandEventArgs e) 
{ 
   // Do not remove the speck if it contains any white pixels 
   if (e.WhiteCount > 0) 
   { 
      e.Status = RemoveStatus.NoRemove; 
   } 
   else 
   { 
      e.Status = RemoveStatus.Remove; 
   } 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.File; 
import java.io.IOException; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.imageprocessing.core.*; 
 
 
public void dotRemoveConstructorExample() { 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.setThrowExceptionsOnInvalidImages(true); 
 
   RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "Clean.tif")); 
   String outputFileName = combine(LEAD_VARS_IMAGES_DIR, "LEAD_dotRemoveExample.jpg"); 
 
   // Prepare the command 
   DotRemoveCommand command = new DotRemoveCommand( 
         DotRemoveCommandFlags.USE_SIZE.getValue() | DotRemoveCommandFlags.SINGLE_REGION.getValue(), 1, 1, 10, 10); 
   assertTrue(command.getMaximumDotHeight() == 10 && command.getMaximumDotWidth() == 10 
         && command.getMinimumDotHeight() == 1 && command.getMinimumDotWidth() == 1); 
   command.addDotRemoveCommandListener(dotRemoveEventS2); 
   command.run(image); 
   System.out.println("Executed changes on loaded image..."); 
 
   codecs.save(image, outputFileName, RasterImageFormat.JPEG, 8); 
   System.out.println("Saved updated file to:\n" + outputFileName); 
   assertTrue(new File(outputFileName).exists()); 
} 
 
DotRemoveCommandListener dotRemoveEventS2 = new DotRemoveCommandListener() { 
   @Override 
   public void onDotRemoveEvent(DotRemoveCommandEvent e) { 
      // Do not remove the speck if it contains any white pixels 
      if (e.getWhiteCount() > 0) { 
         e.setStatus(RemoveStatus.NO_REMOVE); 
      } else { 
         e.setStatus(RemoveStatus.REMOVE); 
      } 
   } 
}; 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Core Assembly

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