File: GrayIntegerImage.java

package info (click to toggle)
java-imaging-utilities 0.14.2%2B3-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,280 kB
  • ctags: 3,725
  • sloc: java: 31,190; sh: 238; makefile: 53; xml: 30
file content (24 lines) | stat: -rw-r--r-- 622 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * GrayIntegerImage
 *
 * Copyright (c) 2002, 2003 Marco Schmidt.
 * All rights reserved.
 */

package net.sourceforge.jiu.data;

/**
 * An empty interface for grayscale images which have integer values
 * of up to 32 bits (<code>int</code> or smaller) as samples.
 * An interface composed of {@link GrayImage} and {@link IntegerImage}.
 * <p>
 * Like all extensions of {@link GrayImage}, this image data class supports
 * only one channel.
 * @author Marco Schmidt
 * @since 0.9.0
 * @see GrayImage
 * @see IntegerImage
 */
public interface GrayIntegerImage extends GrayImage, IntegerImage
{
}