本文整理汇总了TypeScript中neuroglancer/chunk_manager/frontend.ChunkManager类的典型用法代码示例。如果您正苦于以下问题:TypeScript ChunkManager类的具体用法?TypeScript ChunkManager怎么用?TypeScript ChunkManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ChunkManager类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: getSources
getSources(chunkManager: ChunkManager) {
let sources: VolumeChunkSource[][] = [];
const {response, volumeType} = this;
const datasetObject = response['dataset'];
const encoding = volumeType === VolumeType.IMAGE ? 'jpeg' : 'npz';
for (let resolution of Object.keys(datasetObject['neariso_imagesize'])) {
let imageSize = parseIntVec(vec3.create(), datasetObject['neariso_imagesize'][resolution]);
let voxelSize = parseFiniteVec(vec3.create(), datasetObject['neariso_voxelres'][resolution]);
let alternatives: VolumeChunkSource[] = [];
sources.push(alternatives);
// The returned offset for downsampled resolutions can have non-integer components. It
// appears that the true offset is obtained by rounding up.
let origLowerVoxelBound =
parseFiniteVec(vec3.create(), datasetObject['neariso_offset'][resolution]);
let lowerVoxelBound = vec3.create();
let upperVoxelBound = vec3.create();
for (let i = 0; i < 3; ++i) {
let origLower = origLowerVoxelBound[i];
lowerVoxelBound[i] = Math.ceil(origLower);
upperVoxelBound[i] = Math.floor(origLower + imageSize[i]);
}
for (let spec of VolumeChunkSpecification.getDefaults({
volumeType,
voxelSize,
dataType: this.dataType, lowerVoxelBound, upperVoxelBound
})) {
let cacheKey = stableStringify(
{'spec': spec, key: this.key, channel: this.channel, resolution: resolution});
alternatives.push(chunkManager.getChunkSource(
VolumeChunkSource, cacheKey,
() => new VolumeChunkSource(
chunkManager, spec, this.hostnames, this.key, this.channel, resolution, encoding)));
}
}
return sources;
}
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:36,代码来源:frontend.ts
示例2: getNiftiVolumeInfo
function getNiftiVolumeInfo(chunkManager: ChunkManager, url: string, cancellationToken: CancellationToken) {
return chunkManager.rpc!.promiseInvoke<NiftiVolumeInfo>(
GET_NIFTI_VOLUME_INFO_RPC_ID, {'chunkManager': chunkManager.addCounterpartRef(), 'url': url},
cancellationToken);
}
开发者ID:janelia-flyem,项目名称:neuroglancer,代码行数:5,代码来源:frontend.ts
示例3: get
static get(chunkManager: ChunkManager, spec: VolumeChunkSpecification, parameters: Parameters) {
return chunkManager.getChunkSource(
this, stableStringify({parameters, spec: spec.toObject()}),
() => new this(chunkManager, spec, parameters));
}
开发者ID:janelia-flyem,项目名称:neuroglancer,代码行数:5,代码来源:frontend.ts
示例4: getShardedMeshSource
export function getShardedMeshSource(chunkManager: ChunkManager, parameters: MeshSourceParameters) {
return chunkManager.getChunkSource(PrecomputedMeshSource, {parameters});
}
开发者ID:google,项目名称:neuroglancer,代码行数:3,代码来源:frontend.ts
示例5: getSources
getSources(vectorGraphicsSourceOptions: VectorGraphicsSourceOptions) {
const voxelSize = this.stackInfo.voxelResolution;
const chunkSize = vec3.subtract(
vec3.create(), this.stackInfo.upperVoxelBound, this.stackInfo.lowerVoxelBound);
vec3.multiply(chunkSize, chunkSize, voxelSize);
chunkSize[2] = voxelSize[2];
const spec = VectorGraphicsChunkSpecification.make({
voxelSize,
chunkSize,
lowerChunkBound: vec3.fromValues(0, 0, this.stackInfo.lowerVoxelBound[2]),
upperChunkBound: vec3.fromValues(1, 1, this.stackInfo.upperVoxelBound[2]),
vectorGraphicsSourceOptions
});
const source = this.chunkManager.getChunkSource(PointMatchSource, {
spec,
parameters: {
'baseUrls': this.baseUrls,
'owner': this.ownerInfo.owner,
'project': this.stackInfo.project,
'stack': this.stack,
'encoding': 'points',
'matchCollection': this.matchCollection,
'zoffset': this.zoffset
}
});
return [[source]];
}
开发者ID:google,项目名称:neuroglancer,代码行数:29,代码来源:frontend.ts
示例6:
.map(spec => this.chunkManager.getChunkSource(PrecomputedVolumeChunkSource, {
spec,
parameters: {
'baseUrls': this.baseUrls,
'path': `${this.path}/${scaleInfo.key}`,
'encoding': scaleInfo.encoding
}
}));
开发者ID:google,项目名称:neuroglancer,代码行数:8,代码来源:frontend.ts
示例7: stableStringify
.map(spec => {
let path = `${this.path}/${scaleInfo.key}`;
let cacheKey = stableStringify({
'spec': spec,
'baseUrls': this.baseUrls,
'path': path,
'encoding': scaleInfo.encoding
});
return chunkManager.getChunkSource(
VolumeChunkSource, cacheKey,
() => new VolumeChunkSource(
chunkManager, spec, this.baseUrls, path, scaleInfo.encoding));
});
开发者ID:j6k4m8,项目名称:neuroglancer,代码行数:13,代码来源:frontend.ts
注:本文中的neuroglancer/chunk_manager/frontend.ChunkManager类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论