You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-8Lines changed: 6 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,12 +31,13 @@ This sample project has more than just counting vehicles, here are the additiona
31
31
32
32
ToDos:
33
33
34
+
- TensorFlow 2.x version support will be developed.
34
35
- More powerful detection models will be shared.
35
36
- Sample codes will be developed to process different types of input videos (for different types of road traffics such as two way lane road).
36
37
- Code cleanup will be performed.
37
38
- UI will be developed.
38
39
39
-
The input video can be accessible by this [link](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/sub-1504614469486.mp4).
40
+
The input video can be accessible by this [link](https://github.com/ahmetozlu/vehicle_counting_tensorflow/blob/master/input_video.mp4).
40
41
41
42
## Theory
42
43
@@ -100,10 +101,10 @@ See required commands to install OpenCV on Ubuntu in [here](https://gist.github.
100
101
101
102
**3.) TensorFlow**
102
103
103
-
Install TensorFlow by invoking one of the following commands:
104
+
Install TensorFlow (version 1.5.0 is required) by invoking one of the following commands:
104
105
105
-
$ pip3 install tensorflow # Python 3.n; CPU support (no GPU support)
106
-
$ pip3 install tensorflow-gpu # Python 3.n; GPU support
106
+
$ pip3 install tensorflow==1.5.0 # Python 3.n; CPU support (no GPU support)
107
+
$ pip3 install tensorflow-gpu==1.5.0 # Python 3.n; GPU support
107
108
108
109
**4.) TensorFlow Object Detection API**
109
110
@@ -115,7 +116,7 @@ If you are still getting problem about installation after completed the installa
115
116
116
117
**How to run the program?**
117
118
118
-
After completing these 4 installation steps that are given at above, you can test the project by one of these commands:
119
+
After completing these 4 installation steps that are given at above, you can test the project by one of these commands. Program takes an input argument 'imshow' or 'imwrite':
119
120
120
121
python3 vehicle_detection_main.py imshow
121
122
python3 vehicle_detection_main.py imwrite
@@ -140,6 +141,3 @@ Ahmet Özlü
140
141
141
142
## License
142
143
This system is available under the MIT license. See the LICENSE file for more info.
0 commit comments