net.imglib2.type.Type.copy()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(4.0k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中net.imglib2.type.Type.copy()方法的一些代码示例,展示了Type.copy()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Type.copy()方法的具体详情如下:
包路径:net.imglib2.type.Type
类名称:Type
方法名:copy

Type.copy介绍

[英]Creates a new Type variable that has the value of this Type
[中]创建具有此类型值的新类型变量

代码示例

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRealRandomAccessible( final RealRandomAccessible< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: imglib/imglib2

public ConvertedRealRandomAccessible( final RealRandomAccessible< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: imglib/imglib2

public ConvertedRandomAccessibleInterval( final RandomAccessibleInterval< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: imglib/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: imglib/imglib2

public ConvertedRealRandomAccessibleRealInterval( final RealRandomAccessibleRealInterval< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: imglib/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRealRandomAccessibleRealInterval( final RealRandomAccessibleRealInterval< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRandomAccessible( final RandomAccessible< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRealRandomAccess( final RealRandomAccess< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: net.imglib2/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

protected OutOfBoundsConstantValue( final OutOfBoundsConstantValue< T > outOfBounds )
{
  super( outOfBounds );
  this.value = outOfBounds.value.copy();
}

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRandomAccessibleInterval( final RandomAccessibleInterval< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: net.imglib2/imglib2

/**
 * @return an instance of the destination {@link Type}.
 */
public B getDestinationType()
{
  return converted.copy();
}

代码示例来源:origin: net.imglib2/imglib2

public ConvertedRandomAccess( final RandomAccess< A > source, final Converter< ? super A, ? super B > converter, final B b )
{
  super( source );
  this.converter = converter;
  this.converted = b.copy();
}

代码示例来源:origin: imglib/imglib2

@Override
  public OutOfBoundsConstantValue< T > create( final F f )
  {
    return new OutOfBoundsConstantValue< T >( f, value.copy() );
  }
}

代码示例来源:origin: net.imglib2/imglib2

@Override
  public OutOfBoundsConstantValue< T > create( final F f )
  {
    return new OutOfBoundsConstantValue< T >( f, value.copy() );
  }
}

代码示例来源:origin: net.imagej/imagej-common

@Override
public void initialize(final IterableInterval<T> interval) {
  image = interval;
  min = image.firstElement().createVariable();
  max = min.copy();
  init();
}

相关文章

微信公众号

最新文章

更多