We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The "images" folder actually shouldn't appear. Otherwise, custom_dataset will not able to access data and will raise error like this:
cv2.cvtColor(img, cv2.COLOR_BGR2GRAY) cv2.error: OpenCV(3.4.4) C:\projects\opencv python\opencv\modules\imgproc\src\color.cpp:181: error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'
the structure below would be the right structure. Anyway, thank you for your really really great work. Hope this tip will help :-)
data{coco{annotations/train2017/val2017}}
instead of
data{coco{annotations/images{train2017/val2017}}}
for example, the train2017 folder should be like <repo_root>/data/coco/train2017/xxx.jpg instead of <repo_root>/data/coco/images/train2017/xxx.jpg
<repo_root>/data/coco/train2017/xxx.jpg
<repo_root>/data/coco/images/train2017/xxx.jpg
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The "images" folder actually shouldn't appear. Otherwise, custom_dataset will not able to access data and will raise error like this:
the structure below would be the right structure. Anyway, thank you for your really really great work. Hope this tip will help :-)
instead of
for example, the train2017 folder should be like
<repo_root>/data/coco/train2017/xxx.jpg
instead of
<repo_root>/data/coco/images/train2017/xxx.jpg
The text was updated successfully, but these errors were encountered: