-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1111 from thewtex/transform-io
docs: add TransformList, Transform LinkML model
- Loading branch information
Showing
32 changed files
with
2,756 additions
and
562 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,14 +13,17 @@ env: | |
|
||
jobs: | ||
cxx-build-workflow: | ||
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected] | ||
# itk-wasm branch | ||
uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@6868c9879405def5d7532e0437b57e78cbe0b6ea | ||
with: | ||
itk-module-deps: '[email protected]' | ||
ctest-options: '-E itkPipelineTest' | ||
|
||
python-build-workflow: | ||
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected] | ||
with: | ||
itk-module-deps: 'InsightSoftwareConsortium/[email protected]' | ||
secrets: | ||
pypi_password: ${{ secrets.pypi_password }} | ||
#python-build-workflow: | ||
## itk-wasm branch | ||
#uses: thewtex/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@6868c9879405def5d7532e0437b57e78cbe0b6ea | ||
#with: | ||
#itk-module-deps: 'InsightSoftwareConsortium/[email protected]' | ||
#manylinux-platforms: '["_2_28-x64","_2_28-aarch64"]' | ||
#secrets: | ||
#pypi_password: ${{ secrets.pypi_password }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,3 +92,5 @@ cypress/screenshots/ | |
cypress/videos/ | ||
|
||
packages/core/typescript/itk-wasm/dist | ||
|
||
CMakePresets.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
/*========================================================================= | ||
* | ||
* Copyright NumFOCUS | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* https://www.apache.org/licenses/LICENSE-2.0.txt | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*=========================================================================*/ | ||
#ifndef itkFloatTypesJSON_h | ||
#define itkFloatTypesJSON_h | ||
|
||
#include <vector> | ||
|
||
#include "glaze/glaze.hpp" | ||
|
||
namespace itk | ||
{ | ||
enum class JSONFloatTypesEnum | ||
{ | ||
float32, | ||
float64, | ||
}; | ||
} // end namespace itk | ||
|
||
template <> | ||
struct glz::meta<itk::JSONFloatTypesEnum> { | ||
using enum itk::JSONFloatTypesEnum; | ||
static constexpr auto value = glz::enumerate(float32, | ||
float64 | ||
); | ||
}; | ||
|
||
#endif // itkFloatTypesJSON_h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.