vtkScalars,vtkFloatScalars;vtkColorScalars,vtkAPixMap

vtkScalars

功能:

abstract class to an array of scalar data;

usually single value per points ,but there are exceptions(vtkPixmap,vtkAPixmap);

maintain a lookup table for mapping scalars to colors

数据:

//此类只用前两个,申请8位数组可能是准备后面使用
  float Range[8];
  vtkTimeStamp ComputeTime; // Time at which range computed
  vtkLookupTable *LookupTable;

函数:

//计算Range (初始为【0-1】),使用到时间戳
  virtual void ComputeRange();
  float *GetRange();

//使用到Register和unRegister
  virtual void CreateDefaultLookupTable();

  void SetLookupTable(vtkLookupTable *lut);
  vtkGetObjectMacro(LookupTable,vtkLookupTable);

 

vtkFloatScalars

功能:

concrete implementation of vtkScalars

数据:

vtkFloatArray S

 

vtkColorScalars

功能:

abatract class for muti color scalars;

by default get the luminuse value for getSclars;

函数:

//返回rgba的最大值,并转为0-1

  float vtkColorScalars::GetScalar(int i)

//分别调用相对应的Color函数,其中使用到vtkLookupTable->MapValue(s)
  void SetScalar(int i, float s);
  void InsertScalar(int i, float s);
  int InsertNextScalar(float s);

//存入VtkAPixmap中

void vtkColorScalars::GetColors(vtkIdList& ptId, vtkAPixmap& p)

//返回rgba的范围(0-255)
  void GetComponentRange(unsigned char range[8]);
  unsigned char *GetComponentRange();

 

vtkAPixMap:

功能:

concrete class for vtkColorScalars,have rgba(0-255) four components

数据:

vtkUnsignedCharArray S;

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值