當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript array.transposeArray2d函數代碼示例

本文整理匯總了TypeScript中neuroglancer/util/array.transposeArray2d函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript transposeArray2d函數的具體用法?TypeScript transposeArray2d怎麽用?TypeScript transposeArray2d使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了transposeArray2d函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: decodeJpegStack

export function decodeJpegStack(data: Uint8Array, chunkDataSize: vec3, numComponents: number) {
  let parser = new JpegDecoder();
  parser.parse(data);
  // Just check that the total number pixels matches the expected value.
  if (parser.width * parser.height !== chunkDataSize[0] * chunkDataSize[1] * chunkDataSize[2]) {
    throw new Error(
        `JPEG data does not have the expected dimensions: ` +
        `width=${parser.width}, height=${parser.height}, ` +
        `chunkDataSize=${vec3.str(chunkDataSize)}`);
  }
  if (parser.numComponents !== numComponents) {
    throw new Error(
        `JPEG data does not have the expected number of components: ` +
        `components=${parser.numComponents}, expected=${numComponents}`);
  }
  if (parser.numComponents === 1) {
    return parser.getData(parser.width, parser.height, /*forceRGBOutput=*/false);
  } else if (parser.numComponents === 3) {
    let output = parser.getData(parser.width, parser.height, /*forceRGBOutput=*/false);
    return transposeArray2d(output, parser.width * parser.height, 3);
  } else {
    throw new Error(
        `JPEG data has an unsupported number of components: components=${parser.numComponents}`);
  }
}
開發者ID:google,項目名稱:neuroglancer,代碼行數:25,代碼來源:decode_jpeg_stack.ts

示例2: it

 it('single axis', () => {
   let arr = new Uint8Array(3), out = new Uint8Array(3);
   arr.set([0, 1, 2]);
   out.set([0, 1, 2]);
   expect(transposeArray2d(arr, 3, 1)).toEqual(out);
 });
開發者ID:google,項目名稱:neuroglancer,代碼行數:6,代碼來源:array.spec.ts


注:本文中的neuroglancer/util/array.transposeArray2d函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。