Tensorflow Object Detection API

前端 未结 2 1779
死守一世寂寞
死守一世寂寞 2021-02-08 03:43

I decided to take a dip into ML and with a lot of trial and error was able to create a model using TS\' inception.

To take this a step further, I want to use their Objec

相关标签:
2条回答
  • 2021-02-08 04:13

    The training jobs in the Tensorflow Object Detection API expect to get TF Record files with certain fields populated with groundtruth data.

    You can either set up your data in the same format as the Pascal VOC or Oxford-IIIT examples, or you can just directly create the TFRecord files ignoring the XML formats.

    In the latter case, the create_pet_tf_record.py or create_pascal_tf_record.py scripts are likely to still be useful as a reference for which fields the API expects to see and what format they should take. Currently we do not provide a tool that creates these TFRecord files generally, so you will have to write your own.

    0 讨论(0)
  • 2021-02-08 04:36

    Except TF Object Detection API you may look at OpenCV Haar Cascades. I was starting my object detection way from that point and if provide well prepared data set it works pretty fine.

    There are also many articles and tutorials about creating your own cascades, so it`s easy to start. I was using this blog, it helps me a lot.

    0 讨论(0)
提交回复
热议问题