Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make inference script platform agnostic #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import argparse
import os
import sys
import time
import scipy.io as sio
from PIL import Image

Expand Down Expand Up @@ -58,7 +57,7 @@ def load(saver, sess, ckpt_path):

def main():
args = get_arguments()
filename = args.img_path.split('/')[-1]
filename = os.path.basename(args.img_path)
file_type = filename.split('.')[-1]

if os.path.isfile(args.img_path):
Expand Down Expand Up @@ -119,9 +118,9 @@ def main():
im = Image.fromarray(msk[0])
if not os.path.exists(SAVE_DIR):
os.makedirs(SAVE_DIR)
im.save(SAVE_DIR + filename)
im.save(os.path.join(SAVE_DIR + filename))

print('The output file has been saved to {0}'.format(SAVE_DIR + filename))
print('The output file has been saved to {0}'.format(os.path.join(SAVE_DIR + filename)))


if __name__ == '__main__':
Expand Down