Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-imcflibs
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
imcf
python-imcflibs
Commits
64cfb3a3
Commit
64cfb3a3
authored
4 years ago
by
Niko Ehrenfeuchter
Browse files
Options
Downloads
Patches
Plain Diff
Import submodules automatically
parent
14ed66bc
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/imcflibs/__init__.py
+11
-0
11 additions, 0 deletions
src/imcflibs/__init__.py
src/imcflibs/imagej/__init__.py
+15
-0
15 additions, 0 deletions
src/imcflibs/imagej/__init__.py
with
26 additions
and
0 deletions
src/imcflibs/__init__.py
+
11
−
0
View file @
64cfb3a3
...
...
@@ -22,3 +22,14 @@ Biozentrum, University of Basel, Switzerland.
"""
__version__
=
"
${project.version}
"
from
.
import
iotools
from
.
import
log
from
.
import
pathtools
from
.
import
strtools
# check if we're running in Jython, then also import the 'imagej' submodule:
import
platform
as
_python_platform
if
_python_platform
.
python_implementation
()
==
"
Jython
"
:
from
.
import
imagej
del
_python_platform
This diff is collapsed.
Click to expand it.
src/imcflibs/imagej/__init__.py
+
15
−
0
View file @
64cfb3a3
"""
ImageJ related functions, mostly convenience wrappers and combined workflows.
NOTE: this is only useful for Python (actually Jython) running within Fiji / ImageJ
and therefore will not be imported by the main
'
imcflibs
'
package unless that
particular environment is detected.
"""
from
.
import
bioformats
from
.
import
misc
from
.
import
prefs
from
.
import
projections
from
.
import
shading
from
.
import
sjlog
from
.
import
split
from
.
import
stitching
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment