plotMoment {IM}R Documentation

Display a heat map of image moments

Description

Displays image moments as a heat map. A inverse hyperboic sine transform is used to scale the values. If the moments are complex numbers, the absolute value is plotted.

Usage

plotMoment(obj)

Arguments

obj

A Image, OrthIm, CmplxIm, MultiIm class object

Author(s)

Allison Irvine

See Also

Image, CmplxIm, OrthIm, MultiIm, momentObj

Examples

data(livingroom)
Obj= momentObj(img, type="gpzm", order=20, 0);
plotMoment(Obj);

## Not run: 
	images= list(img,img,img,img);
	Obj= momentObj(images, type="krawt", order=100, 0.5);
	plotMoment(Obj);

## End(Not run)

[Package IM version 1.0 Index]