imageNoiseimageNoise
Add dithered noise to an image
Home > Books > NetKernel API and Services Reference > Accessor Listing > Image Resource Model > imageNoise

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:util:image

The imageNoise accessor is exported by the urn:org:ten60:util:image module. Import this module to gain access to the accessor.

Syntax

URI
active:imageNoise

ArgumentRulesDescription
operandMandatory the Java bitmap image
operatorMandatory A format document with the noise level to use

Example Usage

DPML

<instr>
  <type>imageNoise</type>
  <operand>var:myimage</operand>
  <operator>
    <imageNoise>
      <level>100</level>
    </imageNoise>
  </operator>
  <target>this:response</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:imageNoise");
req.addArgument("operand", [resource representation, aspect, or URI] );
req.addArgument("operator", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

Adds dithered noise to an image with the level specified by the operator.

The operator document specifies the noise level (ranging from 0-255). Its syntax is

<imageNoise>
  <level>100</level>
</imageNoise>

imageNoise accepts and returns an ImageAspect resource which holds a Java AWT bitmap image and can be pipelined into any other image tool.

© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.