potterhsu / easy-faster-rcnn.pytorch

An easy implementation of Faster R-CNN (https://arxiv.org/pdf/1506.01497.pdf) in PyTorch.
MIT License
165 stars 57 forks source link

IsADirectoryError: [Errno 21] Is a directory: '/home/harin/harin/easy-faster-rcnn.pytorch-master/data/VOCdevkit/VOC2007/JPEGImages' #36

Open harinsss opened 2 years ago

harinsss commented 2 years ago

hello I have saved 'inputdata' to '/home/harin/harin/easy-faster-rcnn.pytorch-master/data/VOCdevkit/VOC2007/JPEGImages'. There are no errors. are you okay? Help me please,,

/home/harin/anaconda3/envs/pytorch_easy_faster_R_CNN/bin/python /home/harin/harin/easy-faster-rcnn.pytorch-master/infer.py Arguments: dataset = voc2007 backbone = resnet101 checkpoint = /home/harin/harin/easy-faster-rcnn.pytorch-master/outputs/checkpoints-20211103214119-voc2007-resnet101-5eb3026a/model-90000.pth probability_threshold = 0.6 image_min_side = None image_max_side = None anchor_ratios = None anchor_sizes = None pooler_mode = None rpn_pre_nms_top_n = None rpn_post_nms_top_n = 1000 input = /home/harin/harin/easy-faster-rcnn.pytorch-master/data/VOCdevkit/VOC2007/JPEGImages output = /home/harin/harin/easy-faster-rcnn.pytorch-master/outputs

Config: ANCHOR_RATIOS = [(1, 2), (1, 1), (2, 1)] ANCHOR_SIZES = [128, 256, 512] IMAGE_MAX_SIDE = 1000.0 IMAGE_MIN_SIDE = 600.0 POOLER_MODE = Mode.ALIGN RPN_POST_NMS_TOP_N = 1000 RPN_PRE_NMS_TOP_N = 6000

Traceback (most recent call last): File "/home/harin/harin/easy-faster-rcnn.pytorch-master/infer.py", line 97, in main() File "/home/harin/harin/easy-faster-rcnn.pytorch-master/infer.py", line 95, in main _infer(path_to_input_image, path_to_output_image, path_to_checkpoint, dataset_name, backbone_name, prob_thresh) File "/home/harin/harin/easy-faster-rcnn.pytorch-master/infer.py", line 25, in _infer image = transforms.Image.open(path_to_input_image) File "/home/harin/anaconda3/envs/pytorch_easy_faster_R_CNN/lib/python3.6/site-packages/PIL/Image.py", line 2912, in open fp = builtins.open(filename, "rb") IsADirectoryError: [Errno 21] Is a directory: '/home/harin/harin/easy-faster-rcnn.pytorch-master/data/VOCdevkit/VOC2007/JPEGImages'

Process finished with exit code 1