Mentions légales du service
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
dolfin_dic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
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
Admin message
GitLab upgrade completed. Current version is 17.8.2.
Show more breadcrumbs
ALVAREZ BARRIENTOS Felipe
dolfin_dic
Commits
751f74fd
Commit
751f74fd
authored
5 years ago
by
Martin Genet
Browse files
Options
Downloads
Patches
Plain Diff
Complete imaging models
parent
a2952284
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
downsample_images.py
+1
-0
1 addition, 0 deletions
downsample_images.py
generate_images_Image.py
+69
-37
69 additions, 37 deletions
generate_images_Image.py
with
70 additions
and
37 deletions
downsample_images.py
+
1
−
0
View file @
751f74fd
...
...
@@ -11,6 +11,7 @@
from
builtins
import
*
import
dolfin
import
glob
import
math
import
numpy
import
os
...
...
This diff is collapsed.
Click to expand it.
generate_images_Image.py
+
69
−
37
View file @
751f74fd
...
...
@@ -232,16 +232,6 @@ class Image():
G
[
1
]
*=
0.
G
[
2
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
)
def
I0_texture_tagging_XY_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
3
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
)))
**
(
1.
/
2
)
-
1
def
I0_texture_tagging_XY_wDifferentiableCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XY_wDifferentiableCombination
(
X
,
I
)
G
[
0
]
*=
3
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
/
2
/
(
I
[
0
]
+
1
)
G
[
1
]
*=
3
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
/
2
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
0.
def
I0_texture_tagging_XY_wAdditiveCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
+
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
)))
/
2
...
...
@@ -262,16 +252,26 @@ class Image():
G
[
1
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
/
2
/
I
[
0
]
G
[
2
]
*=
0.
def
I0_texture_tagging_XYZ_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
7
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
)))
**
(
1.
/
3
)
-
1
def
I0_texture_tagging_XY_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
3
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
)))
**
(
1.
/
2
)
-
1
def
I0_texture_tagging_XYZ_wDifferentiableCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XYZ_wDifferentiableCombination
(
X
,
I
)
G
[
0
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
G
[
1
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
def
I0_texture_tagging_XY_wDifferentiableCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XY_wDifferentiableCombination
(
X
,
I
)
G
[
0
]
*=
3
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
/
2
/
(
I
[
0
]
+
1
)
G
[
1
]
*=
3
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
/
2
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
0.
def
I0_texture_tagging_XYZ_wAdditiveCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
+
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
+
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
)))
/
3
def
I0_texture_tagging_XYZ_wAdditiveCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XYZ_wAdditiveCombination
(
X
,
I
)
G
[
0
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
)
/
3
G
[
1
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
/
3
G
[
2
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
)
/
3
def
I0_texture_tagging_XYZ_wMultiplicativeCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
...
...
@@ -284,6 +284,17 @@ class Image():
G
[
1
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
/
3
/
I
[
0
]
**
2
G
[
2
]
*=
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
/
3
/
I
[
0
]
**
2
def
I0_texture_tagging_XYZ_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
7
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
)))
**
(
1.
/
3
)
-
1
def
I0_texture_tagging_XYZ_wDifferentiableCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XYZ_wDifferentiableCombination
(
X
,
I
)
G
[
0
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
G
[
1
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
7
*
math
.
copysign
(
1
,
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
))
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
)
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
))
*
abs
(
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
))
/
3
/
(
I
[
0
]
+
1
)
def
I0_texture_tagging_signed_X
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
...
...
@@ -311,6 +322,26 @@ class Image():
G
[
1
]
*=
0.
G
[
2
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
def
I0_texture_tagging_signed_XY_wAdditiveCombination
(
self
,
X
,
I
):
I
[
0
]
*=
((
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
/
2
def
I0_texture_tagging_signed_XY_wAdditiveCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_signed_XY_wAdditiveCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
G
[
2
]
*=
0.
def
I0_texture_tagging_signed_XY_wMultiplicativeCombination
(
self
,
X
,
I
):
I
[
0
]
*=
((
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
**
(
1.
/
2
)
def
I0_texture_tagging_signed_XY_wMultiplicativeCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XY_wMultiplicativeCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
/
I
[
0
]
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
/
I
[
0
]
G
[
2
]
*=
0.
def
I0_texture_tagging_signed_XY_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
3
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
**
(
1.
/
2
)
-
1
...
...
@@ -321,15 +352,27 @@ class Image():
G
[
1
]
*=
3
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
/
2
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
0.
def
I0_texture_tagging_signed_XY_wAdditiveCombination
(
self
,
X
,
I
):
def
I0_texture_tagging_signed_XY
Z
_wAdditiveCombination
(
self
,
X
,
I
):
I
[
0
]
*=
((
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
/
3
def
I0_texture_tagging_signed_XY_wAdditiveCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_signed_XY_wAdditiveCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
2
G
[
2
]
*=
0.
def
I0_texture_tagging_signed_XYZ_wAdditiveCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_signed_XYZ_wAdditiveCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
G
[
2
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
def
I0_texture_tagging_signed_XYZ_wMultiplicativeCombination
(
self
,
X
,
I
):
I
[
0
]
*=
((
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
**
(
1.
/
3
)
def
I0_texture_tagging_signed_XYZ_wMultiplicativeCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_XYZ_wMultiplicativeCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
/
I
[
0
]
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
/
I
[
0
]
G
[
2
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
/
I
[
0
]
def
I0_texture_tagging_signed_XYZ_wDifferentiableCombination
(
self
,
X
,
I
):
I
[
0
]
*=
(
1
+
7
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
...
...
@@ -342,17 +385,6 @@ class Image():
G
[
1
]
*=
7
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
/
3
/
(
I
[
0
]
+
1
)
G
[
2
]
*=
7
*
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
*
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
/
3
/
(
I
[
0
]
+
1
)
def
I0_texture_tagging_signed_XYZ_wAdditiveCombination
(
self
,
X
,
I
):
I
[
0
]
*=
((
1
+
math
.
sin
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
+
(
1
+
math
.
sin
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
))
/
2
)
/
3
def
I0_texture_tagging_signed_XYZ_wAdditiveCombination_wGrad
(
self
,
X
,
I
,
G
):
self
.
I0_texture_tagging_signed_XYZ_wAdditiveCombination
(
X
,
I
)
G
[
0
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
0
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
G
[
1
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
1
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
G
[
2
]
*=
(
math
.
pi
/
self
.
s
)
*
math
.
cos
(
math
.
pi
*
X
[
2
]
/
self
.
s
-
math
.
pi
/
2
)
/
2
/
3
def
I0_noise_no
(
self
,
I
):
pass
...
...
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