質問編集履歴

1

わからないことの明確化

2016/12/15 10:17

投稿

qwertyui
qwertyui

スコア21

test CHANGED
File without changes
test CHANGED
@@ -1,5 +1,43 @@
1
1
  特定のオブジェクトを認識するためには正解画像と非正解画像を集め、正解画像は認識させたいものが映っている個数とその座標を知る必要があり、それを記録するツールが公開されています。
2
2
 
3
- https://github.com/shkh/TrainingAssistant
3
+ set upと書かれた以下の工程を自分で行えば使えるようになりそうですが全く何をすればいいのかわかりません。
4
4
 
5
+
6
+
7
+
8
+
9
+ Clone to your computer:
10
+
5
- このツールが使えそうですがダウンロードするとファイルがたくさんあり、どのようにして使うのかわからないので教えてください。
11
+ % git clone git@github.com:shkh/TrainingAssistant.git
12
+
13
+
14
+
15
+ Add Jcrop:
16
+
17
+ % cd TrainingAssistant
18
+
19
+ % git submodule init
20
+
21
+ % git submodule update
22
+
23
+ % cd static/Jcrop
24
+
25
+ % git checkout master
26
+
27
+
28
+
29
+ Install python modules
30
+
31
+ % pip install -r freezed.txt
32
+
33
+
34
+
35
+ Add images into static/img
36
+
37
+
38
+
39
+ Run server
40
+
41
+ % python views.py
42
+
43
+ This command starts the Flask server on port 5000, visit http://localhost:5000.