Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-2-capstone-design2
/
2014104149
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Graduate
2020-11-28 07:58:10 +0000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
9fbe10352bb6131b2e7f044ccbe37a7af2ff2063
9fbe1035
1 parent
fef11658
Update interpolation method
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
flask/app.py
flask/app.py
View file @
9fbe103
...
...
@@ -29,7 +29,7 @@ sess = tf.compat.v1.Session()
def
resize
(
image
):
resized
=
cv2
.
resize
(
image
,
(
image_size
,
image_size
),
interpolation
=
cv2
.
INTER_
CUBIC
)
resized
=
cv2
.
resize
(
image
,
(
image_size
,
image_size
),
interpolation
=
cv2
.
INTER_
AREA
)
return
resized
def
prewhiten
(
x
):
...
...
Please
register
or
login
to post a comment