本文整理汇总了TypeScript中neuroglancer/sliceview/compressed_segmentation/encode_uint32.encodeChannel函数的典型用法代码示例。如果您正苦于以下问题:TypeScript encodeChannel函数的具体用法?TypeScript encodeChannel怎么用?TypeScript encodeChannel使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了encodeChannel函数的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('basic cached 2-bit', () => {
const input = Uint32Array.of(
4, 3, 5, 4, //
1, 3, 3, 3, //
3, 1, 1, 1, //
5, 5, 3, 4 //
);
const volumeSize = [2, 2, 4];
const blockSize = [2, 2, 1];
const output = new Uint32ArrayBuilder();
output.appendArray([1, 2, 3]);
encodeChannel(output, blockSize, input, volumeSize);
expect(output.view)
.toEqual(Uint32Array.of(
1, 2, 3, //
9 | (2 << 24), 8, //
13 | (1 << 24), 12, //
13 | (1 << 24), 15, //
9 | (2 << 24), 16, //
0b01100001, 3, 4, 5, //
0b1110, 1, 3, //
0b00000001, //
0b01001010 //
));
});