Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QcmpCompressionLibrary
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BioinformaticDataCompression
QcmpCompressionLibrary
Commits
4d44724a
Commit
4d44724a
authored
4 years ago
by
Vojtech Moravec
Browse files
Options
Downloads
Patches
Plain Diff
RawDataLoader: Allow loading of image data to 2D array.
parent
d0892e25
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/cz/it4i/qcmp/io/loader/RawDataLoader.java
+24
-0
24 additions, 0 deletions
src/main/java/cz/it4i/qcmp/io/loader/RawDataLoader.java
with
24 additions
and
0 deletions
src/main/java/cz/it4i/qcmp/io/loader/RawDataLoader.java
+
24
−
0
View file @
4d44724a
...
@@ -130,6 +130,28 @@ public final class RawDataLoader extends BasicLoader implements IPlaneLoader {
...
@@ -130,6 +130,28 @@ public final class RawDataLoader extends BasicLoader implements IPlaneLoader {
return
values
;
return
values
;
}
}
public
int
[][]
loadAllPlanesTo2DArray
()
throws
IOException
{
final
V3i
imageDims
=
inputDataInfo
.
getDimensions
();
final
int
planePixelCount
=
imageDims
.
getX
()
*
imageDims
.
getY
();
final
int
planeDataSize
=
planePixelCount
*
2
;
final
int
[][]
result
=
new
int
[
imageDims
.
getZ
()][];
final
byte
[]
planeBuffer
=
new
byte
[
planeDataSize
];
try
(
final
FileInputStream
fileStream
=
new
FileInputStream
(
inputDataInfo
.
getFilePath
()))
{
for
(
int
plane
=
0
;
plane
<
imageDims
.
getZ
();
plane
++)
{
int
toRead
=
planeDataSize
;
while
(
toRead
>
0
)
{
final
int
read
=
fileStream
.
read
(
planeBuffer
,
planeDataSize
-
toRead
,
toRead
);
assert
(
read
>
0
);
toRead
-=
read
;
}
result
[
plane
]
=
TypeConverter
.
unsignedShortBytesToIntArray
(
planeBuffer
);
}
}
return
result
;
}
@Override
@Override
public
int
[][]
loadRowVectors
(
final
int
vectorSize
,
final
Range
<
Integer
>
planeRange
)
throws
IOException
{
public
int
[][]
loadRowVectors
(
final
int
vectorSize
,
final
Range
<
Integer
>
planeRange
)
throws
IOException
{
return
loadRowVectorsImplByLoadPlaneData
(
vectorSize
,
planeRange
);
return
loadRowVectorsImplByLoadPlaneData
(
vectorSize
,
planeRange
);
...
@@ -144,4 +166,6 @@ public final class RawDataLoader extends BasicLoader implements IPlaneLoader {
...
@@ -144,4 +166,6 @@ public final class RawDataLoader extends BasicLoader implements IPlaneLoader {
public
int
[][]
loadVoxels
(
final
V3i
voxelDim
,
final
Range
<
Integer
>
planeRange
)
throws
IOException
{
public
int
[][]
loadVoxels
(
final
V3i
voxelDim
,
final
Range
<
Integer
>
planeRange
)
throws
IOException
{
return
loadVoxelsImplByLoadPlaneData
(
voxelDim
,
planeRange
);
return
loadVoxelsImplByLoadPlaneData
(
voxelDim
,
planeRange
);
}
}
}
}
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