Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alibylite
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Swain Lab
aliby
alibylite
Commits
8b0ec2fc
Commit
8b0ec2fc
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
clean(test_pp): deactivate post_processing tests
parent
a55d8dea
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
tests/aliby/test_post_processing.py
+20
-7
20 additions, 7 deletions
tests/aliby/test_post_processing.py
with
20 additions
and
7 deletions
tests/aliby/test_post_processing.py
+
20
−
7
View file @
8b0ec2fc
import
pytest
import
unittest
import
unittest
import
matplotlib.pyplot
as
plt
import
matplotlib.pyplot
as
plt
...
@@ -6,13 +7,13 @@ import skimage.morphology as morph
...
@@ -6,13 +7,13 @@ import skimage.morphology as morph
from
scipy
import
ndimage
from
scipy
import
ndimage
from
skimage
import
draw
from
skimage
import
draw
from
aliby.post_processing
import
(
#
from aliby.post_processing import (
circle_outline
,
#
circle_outline,
conical
,
#
conical,
ellipse_perimeter
,
#
ellipse_perimeter,
union_of_spheres
,
#
union_of_spheres,
volume_of_sphere
,
#
volume_of_sphere,
)
#
)
@pytest.mark.skip
(
@pytest.mark.skip
(
...
@@ -27,12 +28,18 @@ class VolumeEstimation(unittest.TestCase):
...
@@ -27,12 +28,18 @@ class VolumeEstimation(unittest.TestCase):
print
(
radius
,
con
,
b_sum
)
print
(
radius
,
con
,
b_sum
)
self
.
assertAlmostEqual
(
abs
(
con
-
b_sum
)
/
b_sum
,
0
,
delta
=
0.10
)
self
.
assertAlmostEqual
(
abs
(
con
-
b_sum
)
/
b_sum
,
0
,
delta
=
0.10
)
@pytest.mark.skip
(
reason
=
"
No longer usable, post_processing unused inside aliby. Kept temporarily
"
)
def
test_conical_ellipse
(
self
):
def
test_conical_ellipse
(
self
):
e
=
ellipse_perimeter
(
4
,
5
)
e
=
ellipse_perimeter
(
4
,
5
)
con
=
conical
(
e
)
con
=
conical
(
e
)
true
=
draw
.
ellipsoid_stats
(
4
,
5
,
4
)[
0
]
true
=
draw
.
ellipsoid_stats
(
4
,
5
,
4
)[
0
]
print
(
con
,
true
)
print
(
con
,
true
)
@pytest.mark.skip
(
reason
=
"
No longer usable, post_processing unused inside aliby. Kept temporarily
"
)
def
test_sphere_error
(
self
):
def
test_sphere_error
(
self
):
radii
=
range
(
3
,
30
)
radii
=
range
(
3
,
30
)
con
=
[
conical
(
circle_outline
(
radius
))
for
radius
in
radii
]
con
=
[
conical
(
circle_outline
(
radius
))
for
radius
in
radii
]
...
@@ -52,6 +59,9 @@ class VolumeEstimation(unittest.TestCase):
...
@@ -52,6 +59,9 @@ class VolumeEstimation(unittest.TestCase):
plt
.
legend
()
plt
.
legend
()
# plt.show()
# plt.show()
@pytest.mark.skip
(
reason
=
"
No longer usable, post_processing unused inside aliby. Kept temporarily
"
)
def
test_ellipse_error
(
self
):
def
test_ellipse_error
(
self
):
x_radii
=
range
(
3
,
30
)
x_radii
=
range
(
3
,
30
)
y_radii
=
[
np
.
ceil
(
2.5
*
r
)
for
r
in
x_radii
]
y_radii
=
[
np
.
ceil
(
2.5
*
r
)
for
r
in
x_radii
]
...
@@ -86,6 +96,9 @@ class VolumeEstimation(unittest.TestCase):
...
@@ -86,6 +96,9 @@ class VolumeEstimation(unittest.TestCase):
plt
.
legend
()
plt
.
legend
()
# plt.show()
# plt.show()
@pytest.mark.skip
(
reason
=
"
No longer usable, post_processing unused inside aliby. Kept temporarily
"
)
def
test_minor_major_error
(
self
):
def
test_minor_major_error
(
self
):
r
=
np
.
random
.
choice
(
list
(
range
(
3
,
30
)))
r
=
np
.
random
.
choice
(
list
(
range
(
3
,
30
)))
x_radii
=
np
.
linspace
(
r
/
3
,
r
,
20
)
x_radii
=
np
.
linspace
(
r
/
3
,
r
,
20
)
...
...
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