niwrap-c3d 0.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- niwrap_c3d-0.5.0/.gitignore +301 -0
- niwrap_c3d-0.5.0/PKG-INFO +8 -0
- niwrap_c3d-0.5.0/README.md +7 -0
- niwrap_c3d-0.5.0/pyproject.toml +17 -0
- niwrap_c3d-0.5.0/src/niwrap_c3d/c3d/__init__.py +23 -0
- niwrap_c3d-0.5.0/src/niwrap_c3d/c3d/c3d.py +10833 -0
- niwrap_c3d-0.5.0/src/niwrap_c3d/c3d/c3d_affine_tool.py +364 -0
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
# NODE #
|
|
2
|
+
|
|
3
|
+
# Logs
|
|
4
|
+
logs
|
|
5
|
+
*.log
|
|
6
|
+
npm-debug.log*
|
|
7
|
+
yarn-debug.log*
|
|
8
|
+
yarn-error.log*
|
|
9
|
+
lerna-debug.log*
|
|
10
|
+
.pnpm-debug.log*
|
|
11
|
+
|
|
12
|
+
# Diagnostic reports (https://nodejs.org/api/report.html)
|
|
13
|
+
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
14
|
+
|
|
15
|
+
# Runtime data
|
|
16
|
+
pids
|
|
17
|
+
*.pid
|
|
18
|
+
*.seed
|
|
19
|
+
*.pid.lock
|
|
20
|
+
|
|
21
|
+
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
22
|
+
lib-cov
|
|
23
|
+
|
|
24
|
+
# Coverage directory used by tools like istanbul
|
|
25
|
+
coverage
|
|
26
|
+
*.lcov
|
|
27
|
+
|
|
28
|
+
# nyc test coverage
|
|
29
|
+
.nyc_output
|
|
30
|
+
|
|
31
|
+
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
32
|
+
.grunt
|
|
33
|
+
|
|
34
|
+
# Bower dependency directory (https://bower.io/)
|
|
35
|
+
bower_components
|
|
36
|
+
|
|
37
|
+
# node-waf configuration
|
|
38
|
+
.lock-wscript
|
|
39
|
+
|
|
40
|
+
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
41
|
+
build/Release
|
|
42
|
+
|
|
43
|
+
# Dependency directories
|
|
44
|
+
node_modules/
|
|
45
|
+
jspm_packages/
|
|
46
|
+
|
|
47
|
+
# Snowpack dependency directory (https://snowpack.dev/)
|
|
48
|
+
web_modules/
|
|
49
|
+
|
|
50
|
+
# TypeScript cache
|
|
51
|
+
*.tsbuildinfo
|
|
52
|
+
|
|
53
|
+
# Optional npm cache directory
|
|
54
|
+
.npm
|
|
55
|
+
|
|
56
|
+
# Optional eslint cache
|
|
57
|
+
.eslintcache
|
|
58
|
+
|
|
59
|
+
# Optional stylelint cache
|
|
60
|
+
.stylelintcache
|
|
61
|
+
|
|
62
|
+
# Microbundle cache
|
|
63
|
+
.rpt2_cache/
|
|
64
|
+
.rts2_cache_cjs/
|
|
65
|
+
.rts2_cache_es/
|
|
66
|
+
.rts2_cache_umd/
|
|
67
|
+
|
|
68
|
+
# Optional REPL history
|
|
69
|
+
.node_repl_history
|
|
70
|
+
|
|
71
|
+
# Output of 'npm pack'
|
|
72
|
+
*.tgz
|
|
73
|
+
|
|
74
|
+
# Yarn Integrity file
|
|
75
|
+
.yarn-integrity
|
|
76
|
+
|
|
77
|
+
# dotenv environment variable files
|
|
78
|
+
.env
|
|
79
|
+
.env.development.local
|
|
80
|
+
.env.test.local
|
|
81
|
+
.env.production.local
|
|
82
|
+
.env.local
|
|
83
|
+
|
|
84
|
+
# parcel-bundler cache (https://parceljs.org/)
|
|
85
|
+
.cache
|
|
86
|
+
.parcel-cache
|
|
87
|
+
|
|
88
|
+
# Next.js build output
|
|
89
|
+
.next
|
|
90
|
+
out
|
|
91
|
+
|
|
92
|
+
# Nuxt.js build / generate output
|
|
93
|
+
.nuxt
|
|
94
|
+
dist
|
|
95
|
+
|
|
96
|
+
# Gatsby files
|
|
97
|
+
.cache/
|
|
98
|
+
# Comment in the public line in if your project uses Gatsby and not Next.js
|
|
99
|
+
# https://nextjs.org/blog/next-9-1#public-directory-support
|
|
100
|
+
# public
|
|
101
|
+
|
|
102
|
+
# vuepress build output
|
|
103
|
+
.vuepress/dist
|
|
104
|
+
|
|
105
|
+
# vuepress v2.x temp and cache directory
|
|
106
|
+
.temp
|
|
107
|
+
.cache
|
|
108
|
+
|
|
109
|
+
# Docusaurus cache and generated files
|
|
110
|
+
.docusaurus
|
|
111
|
+
|
|
112
|
+
# Serverless directories
|
|
113
|
+
.serverless/
|
|
114
|
+
|
|
115
|
+
# FuseBox cache
|
|
116
|
+
.fusebox/
|
|
117
|
+
|
|
118
|
+
# DynamoDB Local files
|
|
119
|
+
.dynamodb/
|
|
120
|
+
|
|
121
|
+
# TernJS port file
|
|
122
|
+
.tern-port
|
|
123
|
+
|
|
124
|
+
# Stores VSCode versions used for testing VSCode extensions
|
|
125
|
+
.vscode-test
|
|
126
|
+
|
|
127
|
+
# yarn v2
|
|
128
|
+
.yarn/cache
|
|
129
|
+
.yarn/unplugged
|
|
130
|
+
.yarn/build-state.yml
|
|
131
|
+
.yarn/install-state.gz
|
|
132
|
+
.pnp.*
|
|
133
|
+
|
|
134
|
+
# PYTHON #
|
|
135
|
+
|
|
136
|
+
# Byte-compiled / optimized / DLL files
|
|
137
|
+
__pycache__/
|
|
138
|
+
*.py[cod]
|
|
139
|
+
*$py.class
|
|
140
|
+
|
|
141
|
+
# C extensions
|
|
142
|
+
*.so
|
|
143
|
+
|
|
144
|
+
# Distribution / packaging
|
|
145
|
+
.Python
|
|
146
|
+
build/
|
|
147
|
+
develop-eggs/
|
|
148
|
+
dist/
|
|
149
|
+
downloads/
|
|
150
|
+
eggs/
|
|
151
|
+
.eggs/
|
|
152
|
+
lib/
|
|
153
|
+
lib64/
|
|
154
|
+
parts/
|
|
155
|
+
sdist/
|
|
156
|
+
var/
|
|
157
|
+
wheels/
|
|
158
|
+
share/python-wheels/
|
|
159
|
+
*.egg-info/
|
|
160
|
+
.installed.cfg
|
|
161
|
+
*.egg
|
|
162
|
+
MANIFEST
|
|
163
|
+
|
|
164
|
+
# PyInstaller
|
|
165
|
+
# Usually these files are written by a python script from a template
|
|
166
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
167
|
+
*.manifest
|
|
168
|
+
*.spec
|
|
169
|
+
|
|
170
|
+
# Installer logs
|
|
171
|
+
pip-log.txt
|
|
172
|
+
pip-delete-this-directory.txt
|
|
173
|
+
|
|
174
|
+
# Unit test / coverage reports
|
|
175
|
+
htmlcov/
|
|
176
|
+
.tox/
|
|
177
|
+
.nox/
|
|
178
|
+
.coverage
|
|
179
|
+
.coverage.*
|
|
180
|
+
.cache
|
|
181
|
+
nosetests.xml
|
|
182
|
+
coverage.xml
|
|
183
|
+
*.cover
|
|
184
|
+
*.py,cover
|
|
185
|
+
.hypothesis/
|
|
186
|
+
.pytest_cache/
|
|
187
|
+
cover/
|
|
188
|
+
|
|
189
|
+
# Translations
|
|
190
|
+
*.mo
|
|
191
|
+
*.pot
|
|
192
|
+
|
|
193
|
+
# Django stuff:
|
|
194
|
+
*.log
|
|
195
|
+
local_settings.py
|
|
196
|
+
db.sqlite3
|
|
197
|
+
db.sqlite3-journal
|
|
198
|
+
|
|
199
|
+
# Flask stuff:
|
|
200
|
+
instance/
|
|
201
|
+
.webassets-cache
|
|
202
|
+
|
|
203
|
+
# Scrapy stuff:
|
|
204
|
+
.scrapy
|
|
205
|
+
|
|
206
|
+
# Sphinx documentation
|
|
207
|
+
docs/_build/
|
|
208
|
+
|
|
209
|
+
# PyBuilder
|
|
210
|
+
.pybuilder/
|
|
211
|
+
target/
|
|
212
|
+
|
|
213
|
+
# Jupyter Notebook
|
|
214
|
+
.ipynb_checkpoints
|
|
215
|
+
|
|
216
|
+
# IPython
|
|
217
|
+
profile_default/
|
|
218
|
+
ipython_config.py
|
|
219
|
+
|
|
220
|
+
# pyenv
|
|
221
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
222
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
223
|
+
# .python-version
|
|
224
|
+
|
|
225
|
+
# pipenv
|
|
226
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
227
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
228
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
229
|
+
# install all needed dependencies.
|
|
230
|
+
#Pipfile.lock
|
|
231
|
+
|
|
232
|
+
# poetry
|
|
233
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
234
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
235
|
+
# commonly ignored for libraries.
|
|
236
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
237
|
+
#poetry.lock
|
|
238
|
+
|
|
239
|
+
# pdm
|
|
240
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
241
|
+
#pdm.lock
|
|
242
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
243
|
+
# in version control.
|
|
244
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
245
|
+
.pdm.toml
|
|
246
|
+
|
|
247
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
248
|
+
__pypackages__/
|
|
249
|
+
|
|
250
|
+
# Celery stuff
|
|
251
|
+
celerybeat-schedule
|
|
252
|
+
celerybeat.pid
|
|
253
|
+
|
|
254
|
+
# SageMath parsed files
|
|
255
|
+
*.sage.py
|
|
256
|
+
|
|
257
|
+
# Environments
|
|
258
|
+
.env
|
|
259
|
+
.venv
|
|
260
|
+
env/
|
|
261
|
+
*venv/
|
|
262
|
+
ENV/
|
|
263
|
+
env.bak/
|
|
264
|
+
venv.bak/
|
|
265
|
+
|
|
266
|
+
# Spyder project settings
|
|
267
|
+
.spyderproject
|
|
268
|
+
.spyproject
|
|
269
|
+
|
|
270
|
+
# Rope project settings
|
|
271
|
+
.ropeproject
|
|
272
|
+
|
|
273
|
+
# mkdocs documentation
|
|
274
|
+
/site
|
|
275
|
+
|
|
276
|
+
# mypy
|
|
277
|
+
.mypy_cache/
|
|
278
|
+
.dmypy.json
|
|
279
|
+
dmypy.json
|
|
280
|
+
|
|
281
|
+
# Pyre type checker
|
|
282
|
+
.pyre/
|
|
283
|
+
|
|
284
|
+
# pytype static type analyzer
|
|
285
|
+
.pytype/
|
|
286
|
+
|
|
287
|
+
# Cython debug symbols
|
|
288
|
+
cython_debug/
|
|
289
|
+
|
|
290
|
+
# PyCharm
|
|
291
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
292
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
293
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
294
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
295
|
+
.idea/
|
|
296
|
+
|
|
297
|
+
.vscode
|
|
298
|
+
/local_scripts
|
|
299
|
+
report.html
|
|
300
|
+
assets
|
|
301
|
+
styx_tmp
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# NiWrap wrappers for [Convert3D](http://www.itksnap.org/pmwiki/pmwiki.php?n=Convert3D.Convert3D)
|
|
2
|
+
|
|
3
|
+
Convert3D (unix name c3d) is a command-line image processing tool that offers complementary features to ITK-SNAP. Originally developed to convert between various 3D image formats, the tool has become more of a Swiss army knife for medical image processing. In addition to many standard filters and resampling commands, c3d offers tools specialized for multilabel images (such as segmentation images output by ITK-SNAP) and multicomponent images (such as RGB images read by SNAP). Through the use of reverse polish notation on the command line, c3d allows many image processing tasks to be combined in small command-line mini-programs. This saves on the need to save intermediate image files, saving disk space and network bandwidth. We use c3d extensively to run studies with thousands of 3D images, and are continually adding commands and features to the tool.
|
|
4
|
+
|
|
5
|
+
Convert3D is made by Convert3D Developers.
|
|
6
|
+
|
|
7
|
+
This package contains wrappers only and has no affiliation with the original authors.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "niwrap_c3d"
|
|
3
|
+
version = "0.5.0"
|
|
4
|
+
description = "NiWrap wrappers for Convert3D."
|
|
5
|
+
license = "LGPL-2.1"
|
|
6
|
+
authors = [{ name = "CMI DAIR", email = "dair@childmind.org" }]
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"styxdefs~=0.5.0"
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
[tool.hatch.build.targets.wheel]
|
|
13
|
+
packages = ["src/niwrap_c3d"]
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Convert3D
|
|
3
|
+
|
|
4
|
+
Convert3D (unix name c3d) is a command-line image processing tool that offers
|
|
5
|
+
complementary features to ITK-SNAP. Originally developed to convert between
|
|
6
|
+
various 3D image formats, the tool has become more of a Swiss army knife for
|
|
7
|
+
medical image processing. In addition to many standard filters and resampling
|
|
8
|
+
commands, c3d offers tools specialized for multilabel images (such as
|
|
9
|
+
segmentation images output by ITK-SNAP) and multicomponent images (such as RGB
|
|
10
|
+
images read by SNAP). Through the use of reverse polish notation on the command
|
|
11
|
+
line, c3d allows many image processing tasks to be combined in small
|
|
12
|
+
command-line mini-programs. This saves on the need to save intermediate image
|
|
13
|
+
files, saving disk space and network bandwidth. We use c3d extensively to run
|
|
14
|
+
studies with thousands of 3D images, and are continually adding commands and
|
|
15
|
+
features to the tool.
|
|
16
|
+
|
|
17
|
+
URL: http://www.itksnap.org/pmwiki/pmwiki.php?n=Convert3D.Convert3D
|
|
18
|
+
"""
|
|
19
|
+
# This file was auto generated by Styx.
|
|
20
|
+
# Do not edit this file directly.
|
|
21
|
+
|
|
22
|
+
from .c3d import *
|
|
23
|
+
from .c3d_affine_tool import *
|