abbyy / barcode_detection_benchmark

Code for paper "New Benchmarks for Barcode Detection using both Synthetic and Real Data" https://link.springer.com/chapter/10.1007%2F978-3-030-57058-3_34
Apache License 2.0
77 stars 20 forks source link

Synthetic dataset.csv Uses Backslashes "\" in Relative Paths #2

Open batuhanfaik opened 3 years ago

batuhanfaik commented 3 years ago

Both the full and light_512_resized versions of the dataset use backslashes in their synthetic data paths. This causes problems on the Linux operating systems. I can write a script to replace backslashes with forward slashes and PR if you like.

As a temporary solution, Linux users can use str.replace(). E.g. image_name = str(row[self.input_key]) from src/data/data_readers.py on line 32 can be replaced with image_name = str(row[self.input_key]).replace("\\", "/") to prevent errors.