当前位置: 首页>>代码示例>>Java>>正文


Java ByteLookupTable类代码示例

本文整理汇总了Java中java.awt.image.ByteLookupTable的典型用法代码示例。如果您正苦于以下问题:Java ByteLookupTable类的具体用法?Java ByteLookupTable怎么用?Java ByteLookupTable使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


ByteLookupTable类属于java.awt.image包,在下文中一共展示了ByteLookupTable类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public static void main(String[] args) {

        byte[][] data = new byte[1][10];
        ByteLookupTable lut = new ByteLookupTable(0, data);
        RasterOp op = new LookupOp(lut, null);

        int[] bandOffsets = {0};
        Point location = new Point(0, 0);
        DataBuffer db = new DataBufferByte(10 * 10);
        SampleModel sm = new PixelInterleavedSampleModel(DataBuffer.TYPE_BYTE,
                                                         10, 10, 1, 10,
                                                         bandOffsets);

        Raster src = Raster.createRaster(sm, db, location);

        op.filter(src, null); // this used to result in NullPointerException
    }
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:18,代码来源:RasterOpNullDestinationRasterTest.java

示例2: apply

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public void apply() {
	if( balance==null ) return;
	ByteLookupTable lookup = balance.getLookup();
	if(lookup==null) return;
	
	int ok = (getTopLevelAncestor() instanceof JFrame )
		? JOptionPane.showConfirmDialog(
			(JFrame)getTopLevelAncestor(),
			"Apply Color Mods?",
			"Modify Image Color",
			JOptionPane.YES_NO_OPTION)
		: JOptionPane.showConfirmDialog(
			(JOptionPane)getTopLevelAncestor(),
			"Apply Color Mods?",
			"Modify Image Color",
			JOptionPane.YES_NO_OPTION);
	if( ok== JOptionPane.NO_OPTION) return;
	BufferedImage im = new BufferedImage( width, height, 
		image.TYPE_INT_RGB);
	Graphics2D g = im.createGraphics();
	g.drawImage( image, new LookupOp( lookup, null ), 0, 0);
	image = im;
	balance.reset();
}
 
开发者ID:iedadata,项目名称:geomapapp,代码行数:25,代码来源:ImageComponent.java

示例3: ComponentTransferRed

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
/**
 * The constructor will instantiate a LookupOp instance using
 * a LookupOp, which is built using the four LUT
 * data obtained by the TransferFunction objects
 * funcs[0] : Alpha component transfer function
 * funcs[1] : Red component transfer function
 * funcs[2] : Green component transfer function
 * funcs[3] : Blue component transfer function
 */
public ComponentTransferRed(CachableRed src,
                            TransferFunction [] funcs,
                            RenderingHints hints) {
    super(src, src.getBounds(),
          GraphicsUtil.coerceColorModel(src.getColorModel(), false),
          src.getSampleModel(),
          null);

    byte [][] tableData = {funcs[1].getLookupTable(),
                           funcs[2].getLookupTable(),
                           funcs[3].getLookupTable(),
                           funcs[0].getLookupTable()};

    // Note that we create an anonymous subclass here.
    // For what ever reason this makes the Op work correctly.
    // If you remove this, it seems to get the color channels messed
    // up.  The downside is that I suspect that this means we are
    // falling into a more general, and hence slower case, but
    // at least it works....
    operation  =  new LookupOp(new ByteLookupTable(0, tableData), hints)
        { };
}
 
开发者ID:git-moss,项目名称:Push2Display,代码行数:32,代码来源:ComponentTransferRed.java

示例4: getLookupOp

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
private static BufferedImageOp getLookupOp() {
    byte[] inv = new byte[256];
    for (int i = 0; i < 256; i++) {
        inv[i] = (byte)(255 - i);
    }
    ByteLookupTable table = new ByteLookupTable(0, inv);
    return new LookupOp(table, null);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:9,代码来源:MlibOpsTest.java

示例5: createReverseTable

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
/**
 * Reverse image color components, leave alpha unchanged.
 */
private static LookupTable createReverseTable() {
    byte[] data = new byte[256];

    for (int i = 0; i < 256; i++) {
        data[i] = (byte) (255 - i);
    }


    return new ByteLookupTable(0, data);
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:14,代码来源:IntImageReverseTest.java

示例6: SingleArrayTest

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public SingleArrayTest() {

        byte[] array = new byte[256];
        for (int i = 0; i < 256; i++) {
            array[i] = (byte)i;
        }
        ByteLookupTable table = new ByteLookupTable(0, array);

        op = new LookupOp(table, null);
    }
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:11,代码来源:SingleArrayTest.java

示例7: getLookup

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public ByteLookupTable getLookup() {
	if( contrast.getValue()==50 && brightness.getValue()==50 ) return null;
	doLookup();
	byte[] table = new byte[256];
	for(int k=0 ; k<256 ; k++) {
		table[k] = (byte)(int)Math.rint(lookup[k]);
	}
	return new ByteLookupTable( 0, table );
}
 
开发者ID:iedadata,项目名称:geomapapp,代码行数:10,代码来源:BalancePanel.java

示例8: colorImage

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public static BufferedImage colorImage(BufferedImage in, Color c)
{
	BufferedImage image = new BufferedImage(in.getWidth(), in.getHeight(), BufferedImage.TYPE_INT_ARGB);
	
	// first convert to grayscale
	new ColorConvertOp(ColorSpace.getInstance(ColorSpace.CS_GRAY),null).filter(in,image);
	
	// grayscale to colored image lookup
	byte[] r = buildLookup(c.getRed());
	byte[] g = buildLookup(c.getGreen());
	byte[] b = buildLookup(c.getBlue());
	byte[] a = buildAlpha();
	return new LookupOp(new ByteLookupTable(0,new byte[][] { r,g,b,a }),null).filter(image,image);
}
 
开发者ID:andy-goryachev,项目名称:PasswordSafe,代码行数:15,代码来源:ImageTools.java

示例9: RgbColormap

import java.awt.image.ByteLookupTable; //导入依赖的package包/类
public RgbColormap() {
    byte[] la = new byte[256];
    for (int i = 0; i < 256; i++) {
        la[i] = (byte) i;
    }
    lut = new ByteLookupTable(0, new byte[][]{la, la, la});
}
 
开发者ID:jplot2d,项目名称:jplot2d,代码行数:8,代码来源:ImageFloat2dDemo.java


注:本文中的java.awt.image.ByteLookupTable类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。