Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
7e493aa1
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
7e493aa1
编写于
12月 20, 2019
作者:
littletomatodonkey
提交者:
ruri
12月 20, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add prediction file (#4093)
* add prediction file * modify prepocess * add assertion
上级
45f9a3df
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
159 addition
and
0 deletion
+159
-0
PaddleCV/image_classification/predict.py
PaddleCV/image_classification/predict.py
+159
-0
未找到文件。
PaddleCV/image_classification/predict.py
0 → 100644
浏览文件 @
7e493aa1
#copyright (c) 2019 PaddlePaddle Authors. All Rights Reserve.
#
#Licensed under the Apache License, Version 2.0 (the "License");
#you may not use this file except in compliance with the License.
#You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#Unless required by applicable law or agreed to in writing, software
#distributed under the License is distributed on an "AS IS" BASIS,
#WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#See the License for the specific language governing permissions and
#limitations under the License.
import
argparse
import
numpy
as
np
import
cv2
import
os
from
paddle
import
fluid
from
paddle.fluid.core
import
PaddleTensor
from
paddle.fluid.core
import
AnalysisConfig
from
paddle.fluid.core
import
create_paddle_predictor
def
resize_short
(
img
,
target_size
,
interpolation
=
None
):
"""resize image
Args:
img: image data
target_size: resize short target size
interpolation: interpolation mode
Returns:
resized image data
"""
percent
=
float
(
target_size
)
/
min
(
img
.
shape
[
0
],
img
.
shape
[
1
])
resized_width
=
int
(
round
(
img
.
shape
[
1
]
*
percent
))
resized_height
=
int
(
round
(
img
.
shape
[
0
]
*
percent
))
if
interpolation
:
resized
=
cv2
.
resize
(
img
,
(
resized_width
,
resized_height
),
interpolation
=
interpolation
)
else
:
resized
=
cv2
.
resize
(
img
,
(
resized_width
,
resized_height
))
return
resized
def
crop_image
(
img
,
target_size
,
center
):
"""crop image
Args:
img: images data
target_size: crop target size
center: crop mode
Returns:
img: cropped image data
"""
height
,
width
=
img
.
shape
[:
2
]
size
=
target_size
if
center
==
True
:
w_start
=
(
width
-
size
)
//
2
h_start
=
(
height
-
size
)
//
2
else
:
w_start
=
np
.
random
.
randint
(
0
,
width
-
size
+
1
)
h_start
=
np
.
random
.
randint
(
0
,
height
-
size
+
1
)
w_end
=
w_start
+
size
h_end
=
h_start
+
size
img
=
img
[
h_start
:
h_end
,
w_start
:
w_end
,
:]
return
img
def
preprocess_image
(
img_path
):
""" preprocess_image """
mean
=
[
0.485
,
0.456
,
0.406
]
std
=
[
0.229
,
0.224
,
0.225
]
crop_size
=
224
target_size
=
256
img
=
cv2
.
imread
(
img_path
)
img
=
resize_short
(
img
,
target_size
,
interpolation
=
None
)
img
=
crop_image
(
img
,
target_size
=
crop_size
,
center
=
True
)
img
=
img
[:,
:,
::
-
1
]
img
=
img
.
astype
(
'float32'
).
transpose
((
2
,
0
,
1
))
/
255
img_mean
=
np
.
array
(
mean
).
reshape
((
3
,
1
,
1
))
img_std
=
np
.
array
(
std
).
reshape
((
3
,
1
,
1
))
img
-=
img_mean
img
/=
img_std
img
=
np
.
expand_dims
(
img
,
axis
=
0
).
copy
()
return
img
def
predict
(
args
):
# config AnalysisConfig
config
=
AnalysisConfig
(
args
.
model_file
,
args
.
params_file
)
if
args
.
gpu_id
<
0
:
config
.
disable_gpu
()
else
:
config
.
enable_use_gpu
(
args
.
gpu_mem
,
args
.
gpu_id
)
# create predictor
predictor
=
create_paddle_predictor
(
config
.
to_native_config
())
# input
inputs
=
preprocess_image
(
args
.
image_path
)
inputs
=
PaddleTensor
(
inputs
)
# predict
outputs
=
predictor
.
run
([
inputs
])
# get output
output
=
outputs
[
0
]
output
=
output
.
as_ndarray
().
flatten
()
cls
=
np
.
argmax
(
output
)
score
=
output
[
cls
]
print
(
"class: "
,
cls
)
print
(
"score: "
,
score
)
return
def
check_args
(
args
):
assert
os
.
path
.
exists
(
args
.
model_file
),
"model_file({}) not exist!"
.
format
(
args
.
model_file
)
assert
os
.
path
.
exists
(
args
.
params_file
),
"params_file({}) not exist!"
.
format
(
args
.
params_file
)
assert
os
.
path
.
exists
(
args
.
image_path
),
"image_path({}) not exist!"
.
format
(
args
.
image_path
)
assert
isinstance
(
args
.
gpu_id
,
int
)
assert
isinstance
(
args
.
gpu_mem
,
int
)
def
parse_args
():
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"--model_file"
,
type
=
str
,
default
=
""
,
help
=
"model filename"
)
parser
.
add_argument
(
"--params_file"
,
type
=
str
,
default
=
""
,
help
=
"parameter filename"
)
parser
.
add_argument
(
"--image_path"
,
type
=
str
,
default
=
""
,
help
=
"image path"
)
parser
.
add_argument
(
"--gpu_id"
,
type
=
int
,
default
=
0
,
help
=
"gpu id, if less than 0, gpu is disabled"
)
parser
.
add_argument
(
"--gpu_mem"
,
type
=
int
,
default
=
2000
,
help
=
"gpu memory, unit: MB"
)
return
parser
.
parse_args
()
def
main
():
args
=
parse_args
()
check_args
(
args
)
predict
(
args
)
if
__name__
==
"__main__"
:
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录