Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Y
YeaZ-GUI
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
chadhat
YeaZ-GUI
Commits
e4601f23
Commit
e4601f23
authored
4 years ago
by
mattminder
Browse files
Options
Downloads
Patches
Plain Diff
removed debug prints in interactionDisk
parent
0a269c1a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
disk/InteractionDisk_temp.py
+0
-10
0 additions, 10 deletions
disk/InteractionDisk_temp.py
with
0 additions
and
10 deletions
disk/InteractionDisk_temp.py
+
0
−
10
View file @
e4601f23
...
@@ -51,7 +51,6 @@ class Reader:
...
@@ -51,7 +51,6 @@ class Reader:
self
.
sizey
=
images
.
sizes
[
'
y
'
]
self
.
sizey
=
images
.
sizes
[
'
y
'
]
self
.
sizec
=
images
.
sizes
[
'
c
'
]
self
.
sizec
=
images
.
sizes
[
'
c
'
]
self
.
sizet
=
images
.
sizes
[
'
t
'
]
self
.
sizet
=
images
.
sizes
[
'
t
'
]
print
(
"
Debug: self.sizet
"
,
self
.
sizet
)
try
:
try
:
self
.
Npos
=
images
.
sizes
[
'
v
'
]
self
.
Npos
=
images
.
sizes
[
'
v
'
]
except
KeyError
:
except
KeyError
:
...
@@ -63,7 +62,6 @@ class Reader:
...
@@ -63,7 +62,6 @@ class Reader:
self
.
sizey
,
self
.
sizex
=
handle
.
shape
#SJR: changed by me
self
.
sizey
,
self
.
sizex
=
handle
.
shape
#SJR: changed by me
self
.
sizec
=
1
self
.
sizec
=
1
self
.
sizet
=
handle
.
number_of_pages
self
.
sizet
=
handle
.
number_of_pages
print
(
"
Debug: handle.number_of_pages
"
,
handle
.
number_of_pages
)
self
.
Npos
=
1
self
.
Npos
=
1
self
.
channel_names
=
[
'
Channel1
'
]
self
.
channel_names
=
[
'
Channel1
'
]
...
@@ -89,7 +87,6 @@ class Reader:
...
@@ -89,7 +87,6 @@ class Reader:
self
.
sizec
=
1
self
.
sizec
=
1
self
.
Npos
=
1
self
.
Npos
=
1
self
.
sizet
=
len
(
filelist
)
self
.
sizet
=
len
(
filelist
)
print
(
"
Debug: self.sizet
"
,
self
.
sizet
)
self
.
channel_names
=
[
'
Channel1
'
]
self
.
channel_names
=
[
'
Channel1
'
]
#create the labels which index the masks with respect to time and
#create the labels which index the masks with respect to time and
...
@@ -289,9 +286,6 @@ class Reader:
...
@@ -289,9 +286,6 @@ class Reader:
"""
"""
if
currentT
<=
len
(
self
.
tlabels
)
-
1
:
if
currentT
<=
len
(
self
.
tlabels
)
-
1
:
for
t
in
file
[
'
/{}
'
.
format
(
self
.
fovlabels
[
currentFOV
])].
keys
():
for
t
in
file
[
'
/{}
'
.
format
(
self
.
fovlabels
[
currentFOV
])].
keys
():
print
(
'
Debug currentT
'
,
currentT
)
print
(
'
Debud self.tlabels
'
,
self
.
tlabels
)
print
(
len
(
self
.
tlabels
))
# currentT is a number
# currentT is a number
# self.tlabels is some string that indexes the time point? E.g., T0?
# self.tlabels is some string that indexes the time point? E.g., T0?
if
t
==
self
.
tlabels
[
currentT
]:
if
t
==
self
.
tlabels
[
currentT
]:
...
@@ -395,8 +389,6 @@ class Reader:
...
@@ -395,8 +389,6 @@ class Reader:
except
ValueError
:
except
ValueError
:
pass
pass
images
.
default_coords
[
'
c
'
]
=
self
.
default_channel
images
.
default_coords
[
'
c
'
]
=
self
.
default_channel
print
(
'
Debug in InteractionDisk_temp
'
,
currentfov
)
print
(
'
Debug in InteractionDisk_temp
'
,
self
.
default_channel
)
images
.
iter_axes
=
'
t
'
images
.
iter_axes
=
'
t
'
im
=
images
[
currentT
]
im
=
images
[
currentT
]
...
@@ -404,8 +396,6 @@ class Reader:
...
@@ -404,8 +396,6 @@ class Reader:
with
pytiff
.
Tiff
(
self
.
nd2path
)
as
handle
:
with
pytiff
.
Tiff
(
self
.
nd2path
)
as
handle
:
handle
.
set_page
(
currentT
)
handle
.
set_page
(
currentT
)
im
=
handle
[:]
im
=
handle
[:]
print
(
'
Debug in InteractionDisk_temp
'
,
im
.
shape
)
# print('Debug in InteractionDisk_temp',im[0,0],np.amin(im),np.amax(im))
elif
self
.
isfolder
:
elif
self
.
isfolder
:
filelist
=
sorted
(
os
.
listdir
(
self
.
nd2path
))
filelist
=
sorted
(
os
.
listdir
(
self
.
nd2path
))
...
...
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