Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
camenduru
/
openpose
like
11
arxiv:
4 papers
Model card
Files
Files and versions
xet
Community
1
main
openpose
/
3rdparty
/
caffe
/
matlab
/
+caffe
/
private
/
CHECK_FILE_EXIST.m
camenduru
thanks to openpose ❤
f5bb0c0
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
118 Bytes
function CHECK_FILE_EXIST(filename)
if
exist(filename,
'file'
)
=
=
0
error(
'%s does not exist'
, filename);
end
end