質問編集履歴
2
手順をより詳しく書き直した。
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,6 +50,32 @@
|
|
50
50
|
|
51
51
|
```swift
|
52
52
|
|
53
|
+
// Copyright 2016 Google Inc. All Rights Reserved.
|
54
|
+
|
55
|
+
//
|
56
|
+
|
57
|
+
// Licensed under the Apache License, Version 2.0 (the "License");
|
58
|
+
|
59
|
+
// you may not use this file except in compliance with the License.
|
60
|
+
|
61
|
+
// You may obtain a copy of the License at
|
62
|
+
|
63
|
+
//
|
64
|
+
|
65
|
+
// http://www.apache.org/licenses/LICENSE-2.0
|
66
|
+
|
67
|
+
//
|
68
|
+
|
69
|
+
// Unless required by applicable law or agreed to in writing, software
|
70
|
+
|
71
|
+
// distributed under the License is distributed on an "AS IS" BASIS,
|
72
|
+
|
73
|
+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
74
|
+
|
75
|
+
// See the License for the specific language governing permissions and
|
76
|
+
|
77
|
+
// limitations under the License.
|
78
|
+
|
53
79
|
|
54
80
|
|
55
81
|
import UIKit
|
@@ -57,6 +83,36 @@
|
|
57
83
|
import SwiftyJSON <--16行目 (!)No such module 'SwiftyJSON'
|
58
84
|
|
59
85
|
|
86
|
+
|
87
|
+
class ViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate {
|
88
|
+
|
89
|
+
let imagePicker = UIImagePickerController()
|
90
|
+
|
91
|
+
let session = URLSession.shared
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
@IBOutlet weak var imageView: UIImageView!
|
96
|
+
|
97
|
+
@IBOutlet weak var spinner: UIActivityIndicatorView!
|
98
|
+
|
99
|
+
@IBOutlet weak var labelResults: UITextView!
|
100
|
+
|
101
|
+
@IBOutlet weak var faceResults: UITextView!
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
var googleAPIKey = "API_KEY"
|
106
|
+
|
107
|
+
var googleURL: URL {
|
108
|
+
|
109
|
+
return URL(string: "https://vision.googleapis.com/v1/images:annotate?key=(googleAPIKey)")!
|
110
|
+
|
111
|
+
}
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
(以下略)
|
60
116
|
|
61
117
|
|
62
118
|
|
1
手順をより詳しく書き直した。
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,21 @@
|
|
10
10
|
|
11
11
|
|
12
12
|
|
13
|
-
上から2番目の記事を参考にしてCloudVisionを使って画像から文字を検出し文字起こしするアプリを作ろうとしています。
|
13
|
+
上から2番目の記事を参考にしてCloudVisionを使って画像から文字を検出し文字起こしするアプリを作ろうとしています。(以下の手順で本来は成功するはずなのですが。。。)
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
```
|
18
|
+
|
19
|
+
$ git clone https://github.com/GoogleCloudPlatform/cloud-vision.git
|
20
|
+
|
21
|
+
$ cd cloud-vision/ios/Swift
|
22
|
+
|
23
|
+
$ pod install
|
24
|
+
|
25
|
+
```
|
26
|
+
|
27
|
+
|
14
28
|
|
15
29
|
|
16
30
|
|