georgesung / ssd_tensorflow_traffic_sign_detection

Implementation of Single Shot MultiBox Detector in TensorFlow, to detect and classify traffic signs
MIT License
530 stars 222 forks source link

where is the mergedAnnotations.csv?? #9

Closed guiyang882 closed 7 years ago

guiyang882 commented 7 years ago

hi, I want to train your net model, use your given datasets. But I did not found the mergedAnnotations.csv.

# For speed, put entire contents of mergedAnnotations.csv in memory
merged_annotations = []
with open('mergedAnnotations.csv', 'r') as f:
    for line in f:
        line = line[:-1]  # strip trailing newline
        merged_annotations.append(line)

thx

georgesung commented 7 years ago

From README.md:

Training the model from scratch:

synru commented 6 years ago

Use signDatabasePublicFramesOnly\tools\mergeAnnotationFiles.py to create the csv

sudonto commented 6 years ago

@sunlung how to filter only stop sign and pedestrian in mergeAnnotation.csv? really need your help. thank you.