openpose / 3rdparty /caffe /matlab /+caffe /private /CHECK_FILE_EXIST.m
camenduru's picture
thanks to openpose ❤
f5bb0c0
raw
history blame contribute delete
118 Bytes
function CHECK_FILE_EXIST(filename)
if exist(filename, 'file') == 0
error('%s does not exist', filename);
end
end