LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly)

ApplyLinearModalityLookupTableCommand Class

Show in webframe
Example 







Members 
Remaps the image pixels by applying a linear transformation described by a rescale slope and an intercept. This class is available in the Document/Medical toolkits only.
Object Model
Syntax
public class ApplyLinearModalityLookupTableCommand : Leadtools.ImageProcessing.RasterCommand, Leadtools.ImageProcessing.IRasterCommand  
'Declaration
 
Public Class ApplyLinearModalityLookupTableCommand 
   Inherits Leadtools.ImageProcessing.RasterCommand
   Implements Leadtools.ImageProcessing.IRasterCommand 
'Usage
 
Dim instance As ApplyLinearModalityLookupTableCommand
public sealed class ApplyLinearModalityLookupTableCommand : Leadtools.ImageProcessing.IRasterCommand  
@interface LTApplyLinearModalityLookupTableCommand : LTRasterCommand
public class ApplyLinearModalityLookupTableCommand extends RasterCommand
function Leadtools.ImageProcessing.Core.ApplyLinearModalityLookupTableCommand()
public ref class ApplyLinearModalityLookupTableCommand : public Leadtools.ImageProcessing.RasterCommand, Leadtools.ImageProcessing.IRasterCommand  
Remarks
For more information, refer to Changing Brightness and Contrast.

In Silverlight and Windows Phone versions of LEADTOOLS, this image processing command will fail if the image data for the RasterImage object is stored internally using a Silverlight WriteableBitmap object. For more information, refer to Image Processing Command Limitations in Silverlight.

Example
Copy Code  
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

Public Sub ApplyLinearModalityLookupTableCommandExample()
   Dim codecs As New RasterCodecs()
   codecs.ThrowExceptionsOnInvalidImages = True

   Dim leadImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm"))

   ' Prepare the command
   Dim command As ApplyLinearModalityLookupTableCommand = New ApplyLinearModalityLookupTableCommand
   command.Flags = ModalityLookupTableCommandFlags.None
   command.Intercept = 0.0
   command.Slope = 0.5
   command.Run(leadImage)

End Sub

Public NotInheritable Class LEAD_VARS
Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"
End Class
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

public void ApplyLinearModalityLookupTableCommandExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;

   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE2.dcm"));

   // Prepare the command
   ApplyLinearModalityLookupTableCommand command = new ApplyLinearModalityLookupTableCommand();
   command.Flags     = ModalityLookupTableCommandFlags.None;
   command.Intercept = 0.0;
   command.Slope     = 0.5;
   command.Run(image);

}

static class LEAD_VARS
{
public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";
}
function ApplyLinearModalityLookupTableCommandExample()
{
   var codecs = new Leadtools.Codecs.RasterCodecs();
   codecs.throwExceptionsOnInvalidImages = true;

   // Load the image
   var srcFileName = "Assets\\Image2.dcm";
   return Tools.AppInstallFolder().getFileAsync(srcFileName).then(function (loadFile) {
      return codecs.loadAsync(Leadtools.LeadStreamFactory.create(loadFile));
   }).then(function (image){
      // Prepare the command
      with (Leadtools.ImageProcessing.Core) {
         var command = new ApplyLinearModalityLookupTableCommand();
         command.flags = ModalityLookupTableCommandFlags.none;
         command.intercept = 0.0;
         command.slope = 0.5;
         command.run(image);
      }
   });
}
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

      
public async Task ApplyLinearModalityLookupTableCommandExample()
{
   // Load an image
   RasterCodecs codecs = new RasterCodecs();
   codecs.ThrowExceptionsOnInvalidImages = true;
   // Load the image
   string srcFileName = @"Assets\Image2.dcm";
   StorageFile loadFile = await Tools.AppInstallFolder.GetFileAsync(srcFileName);
   RasterImage image = await codecs.LoadAsync(LeadStreamFactory.Create(loadFile));

   // Prepare the command
   ApplyLinearModalityLookupTableCommand command = new ApplyLinearModalityLookupTableCommand();
   command.Flags     = ModalityLookupTableCommandFlags.None;
   command.Intercept = 0.0;
   command.Slope     = 0.5;
   command.Run(image);

}
using Leadtools;
using Leadtools.Examples;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;

public void ApplyLinearModalityLookupTableCommandExample(RasterImage image, Stream outStream)
{
   // Prepare the command
   ApplyLinearModalityLookupTableCommand command = new ApplyLinearModalityLookupTableCommand();
   command.Flags = ModalityLookupTableCommandFlags.None;
   command.Intercept = 0.0;
   command.Slope = 0.5;
   command.Run(image);
   // Save result image
   RasterCodecs codecs = new RasterCodecs();
   codecs.Save(image, outStream, RasterImageFormat.DicomGray, image.BitsPerPixel);
   image.Dispose();
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing.Core

Public Sub ApplyLinearModalityLookupTableCommandExample(ByVal image As RasterImage, ByVal outStream As Stream)
   ' Prepare the command
   Dim command As ApplyLinearModalityLookupTableCommand = New ApplyLinearModalityLookupTableCommand()
   command.Flags = ModalityLookupTableCommandFlags.None
   command.Intercept = 0.0
   command.Slope = 0.5
   command.Run(image)
   ' Save result image
   Dim codecs As RasterCodecs = New RasterCodecs()
   codecs.Save(image, outStream, RasterImageFormat.DicomGray, image.BitsPerPixel)
   image.Dispose()
End Sub
Requirements

Target Platforms

See Also

Reference

ApplyLinearModalityLookupTableCommand Members
Leadtools.ImageProcessing.Core Namespace
Changing Brightness and Contrast
Leadtools.ImageProcessing.Color.RemapIntensityCommand
ApplyLinearModalityLookupTableCommand Class
ApplyVoiLookupTableCommand Class
ApplyLinearVoiLookupTableCommand Class
Leadtools.ImageProcessing.Color.AdjustTintCommand
Leadtools.ImageProcessing.Color.GammaCorrectExtendedCommand

 

 


Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.