Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
qim3d
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
QIM
Tools
qim3d
Merge requests
!11
added txrm_loader_wo_virtual_stack
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
added txrm_loader_wo_virtual_stack
load_txrm_files
into
main
Overview
0
Commits
4
Pipelines
0
Changes
1
Merged
s184058
requested to merge
load_txrm_files
into
main
1 year ago
Overview
0
Commits
4
Pipelines
0
Changes
1
Added the TXRM loader without virtual stack optionality (however I have an idea for this).
Moved internal function
_get_h5_dataset_keys
function outside the DataLoader class
Fixed issue with memory mapping for TIFF directories, which were not utilizing memory mapping although displaying it so
0
0
Merge request reports
Compare
version 2
version 2
67398e37
1 year ago
version 1
6e607d6b
1 year ago
main (base)
and
latest version
latest version
9919b9fb
4 commits,
1 year ago
version 2
67398e37
3 commits,
1 year ago
version 1
6e607d6b
2 commits,
1 year ago
Show latest version
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
qim3d/io/load.py
+
1
−
1
View file @ 9919b9fb
Edit in single-file editor
Open in Web IDE
Show full file
@@ -287,7 +287,7 @@ class DataLoader:
else
:
raise
ValueError
(
"
Invalid path
"
)
def
_get_h5_dataset_keys
(
self
,
f
):
def
_get_h5_dataset_keys
(
f
):
keys
=
[]
f
.
visit
(
lambda
key
:
keys
.
append
(
key
)
if
isinstance
(
f
[
key
],
h5py
.
Dataset
)
else
None
Loading