Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(typescript): fix interface-type links #1359

Merged
merged 1 commit into from
Mar 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/typescript/interface_types/BinaryFile.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BinaryFile

A `BinaryFile` represents a binary file. For performance reasons, use [`BinaryStream`](./BinaryStream.html), when possible, instead. `BinaryFile` is a JavaScript object with the following properties:
A `BinaryFile` represents a binary file. For performance reasons, use [`BinaryStream`](./BinaryStream), when possible, instead. `BinaryFile` is a JavaScript object with the following properties:

- `data`: `Uint8Arrray` with the binary data.
- `path`: File path string.
4 changes: 2 additions & 2 deletions docs/typescript/interface_types/Image.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ An `Image` is the N-dimensional image data structure for *ITK-Wasm*.

`Image` is a JavaScript object with the following properties:

- `imageType`: The [ImageType](/api/ImageType) for this image.
- `imageType`: The [ImageType](./ImageType) for this image.
- `name`: An optional name string that describes this image.
- `origin` An Array with length `imageType.dimension` that describes the location of the center of the lower left pixel in physical units.
- `spacing`: An Array with length `dimension` that describes the spacing between pixel in physical units.
Expand All @@ -19,4 +19,4 @@ Note that the `origin`, `spacing`, `direction`, and `size` are indexed with an `

```
const tensor = tf.tensor(image.data, image.size.reverse())
```
```
10 changes: 7 additions & 3 deletions docs/typescript/interface_types/ImageType.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
# ImageType

An `ImageType` describes the type of an [`Image`](/api/Image). It is a
An `ImageType` describes the type of an [`Image`](./Image). It is a
JSON object with the following attributes:

- `dimension`: An integer that describes the dimension for the image, typically 2 or 3.
- `pixelType`: The [`PixelType`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/PixelTypes.ts). For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `componentType`: The type of the components in a pixel. This is one of the [`IntTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/IntTypes.ts) or [`FloatTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/FloatTypes.ts).
- `pixelType`: The [`PixelType`]. For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `componentType`: The type of the components in a pixel. This is one of the [`IntTypes`] or [`FloatTypes`].
- `components`: The number of components in a pixel. For a *Scalar* `pixelType` this will be 1.

[`PixelType`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/pixel-types.ts
[`IntTypes`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/int-types.ts
[`FloatTypes`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/float-types.ts
12 changes: 7 additions & 5 deletions docs/typescript/interface_types/Mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ An `Mesh` is the N-dimensional data structure to represent points sets and meshe

A Mesh is a JavaScript object with the following properties:

- `meshType`: The [`MeshType`](/api/MeshType) for this mesh.
- `meshType`: The [`MeshType`](./MeshType) for this mesh.
- `name`: An optional name string that describes this mesh.
- `numberOfPoints`: The number of points in the mesh.
- `points`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the point locations.
- `points`: A [`TypedArray`] containing the point locations.
- `numberOfPointPixels`: The number of points pixels in the mesh.
- `pointData`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the point pixel data.
- `pointData`: A [`TypedArray`] containing the point pixel data.
- `numberOfCells`: The number of cells in the mesh.
- `cells`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the cells.
- `cells`: A [`TypedArray`] containing the cells.
- `numberOfCellPixels`: The number of cells pixels in the mesh.
- `cellData`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the cell pixel data.
- `cellData`: A [`TypedArray`] containing the cell pixel data.
- `cellBufferSize`: The size of the cell buffer in `unsigned int`'s.

For more information, see [the description](https://itk.org/ITKSoftwareGuide/html/Book1/ITKSoftwareGuide-Book1ch4.html#x38-640004.3) of an `itk::Mesh` in the ITK Software Guide.

`TypedArray`: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
16 changes: 10 additions & 6 deletions docs/typescript/interface_types/MeshType.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,15 @@
A `MeshType` describes the type of an [`Mesh`](/api/Mesh). It is a JSON object with the following attributes:

- `dimension`: The spatial dimension of the mesh.
- `pointComponentType`: The type of the components used to represent a point. This is one of the [`FloatTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/FloatTypes.js).
- `pointPixelComponentType`: The type of the components used to represent the data at a point. This is one of the [`IntTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/IntTypes.js) or [`FloatTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/FloatTypes.ts).
- `pointPixelType`: The [`PixelType`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/PixelTypes.ts) for data associated with a point. For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `pointComponentType`: The type of the components used to represent a point. This is one of the [`FloatTypes`].
- `pointPixelComponentType`: The type of the components used to represent the data at a point. This is one of the [`IntTypes`] or [`FloatTypes`].
- `pointPixelType`: The [`PixelType`] for data associated with a point. For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `pointPixelComponents`: The number of components in a point pixel. For a *Scalar* *pixelType*, this will be 1.
- `cellComponentType`: The type of the components used to represent a cell. This is one of the [`IntTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/IntTypes.ts).
- `cellPixelComponentType`: The type of the components used to represent the data at a cell. This is one of the [`IntTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/IntTypes.js) or [`FloatTypes`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/FloatTypes.ts).
- `cellPixelType`: The [`PixelType`](https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/src/core/PixelTypes.ts) for data associated with a cell. For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `cellComponentType`: The type of the components used to represent a cell. This is one of the [`IntTypes`].
- `cellPixelComponentType`: The type of the components used to represent the data at a cell. This is one of the [`IntTypes`] or [`FloatTypes`].
- `cellPixelType`: The [`PixelType`] for data associated with a cell. For example, *Scalar*, *Vector*, *CovariantVector*, or *SymmetricSecondRankTensor*.
- `cellPixelComponents`: The number of components in a cell pixel. For a *Scalar* `pixelType`, this will be 1.

[`PixelType`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/pixel-types.ts
[`IntTypes`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/int-types.ts
[`FloatTypes`]: https://github.com/InsightSoftwareConsortium/ITK-Wasm/blob/main/packages/core/typescript/itk-wasm/src/interface-types/float-types.ts
2 changes: 1 addition & 1 deletion docs/typescript/interface_types/TextFile.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# TextFile

A `TextFile` represents a text file. For performance reasons, use [`TextStream`](./TextStream.html), when possible, instead. `TextFile` is a JavaScript object with the following properties:
A `TextFile` represents a text file. For performance reasons, use [`TextStream`](./TextStream), when possible, instead. `TextFile` is a JavaScript object with the following properties:

- `data`: String with the text data.
- `path`: File path string.
6 changes: 4 additions & 2 deletions docs/typescript/interface_types/Transform.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ A `Transform` specifies a spatial transformation that maps points from one coord
- `name`: An optional name string that describes this transform.
- `inputSpaceName`: An optional name string that describes the input space.
- `outputSpaceName`: An optional name string that describes the output space.
- `parameters`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the transform parameters.
- `fixedParameters`: A [`TypedArray`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray) containing the fixed transform parameters.
- `parameters`: A [`TypedArray`] containing the transform parameters.
- `fixedParameters`: A [`TypedArray`] containing the fixed transform parameters.

[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
2 changes: 1 addition & 1 deletion docs/typescript/interface_types/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ TransformParameterizations.md
JsonCompatible.md
```

These interfaces types are supported in the [Emscripten interface](/api/browser_pipelines), [WASI](https://wasi.dev/) embedding interfaces, and native or virtual [filesystem IO](/introduction/file_formats/index.html). They are intended to be forward-compatible with the [WebAssembly Component Model](https://github.com/WebAssembly/component-model).
These interfaces types are supported in the [Emscripten interface](/api/browser_pipelines), [WASI](https://wasi.dev/) embedding interfaces, and native or virtual [filesystem IO](../../introduction/file_formats/). They are intended to be forward-compatible with the [WebAssembly Component Model](https://github.com/WebAssembly/component-model).
Loading