Object Detection In Tensorflow - Part 1

版权声明:本文为博主Victor 原创文章,未经博主Victor允许不得转载。This article is written by Blogger Victor, it coule be tranferred to under your name only gotten Victor's Permission. https://blog.csdn.net/u013538542/article/details/80974807

Object Detection In Tensorflow for single image detection

Github

First, we have a look at the following effect photos

这里写图片描述

这里写图片描述

这里写图片描述

These effect pictures are recognized from my hands-on experience. It’s very easy to do that. With detailed code, I won’t mentioned in this blog post.

If you want to hands-on this simple project, see following link for that.

Object Detection Official Documentation

Object Detection Tutorial

Note that, you have to follow the steps to install packages regarding to the environment. Installation Guide

protoc = 3.4.0 (The v3.4.0 is not the latest, but it requires.)
tensorflow
PIL
matplotlib
jupyter
pillow
lxml

When the v3.4.0 of protoc has downloaded and installed, and Github Code also downloaded, you have to compile these *.proto files in the directory object_detection/protos/*.proto, and run the following command

# From tensorflow/models/research/
protoc object_detection/protos/*.proto --python_out=.

See this installation.md , and follow every steps in, finally, you’ll see the effects.


1.Using Tensorflow Object Detection to do Pixel Wise Classification

2.Building a Custom Mask RCNN model with Tensorflow Object Detection

3.Pre-trained Models

猜你喜欢

转载自blog.csdn.net/u013538542/article/details/80974807