質問編集履歴
7
test
CHANGED
File without changes
|
test
CHANGED
@@ -73,3 +73,7 @@
|
|
73
73
|
westcentralus.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=age%2Cgender%2CheadPose%2Csmile%2CfacialHair%2Cglasses%2Cemotion%2Chair%2Cmakeup%2Cocclusion%2Caccessories%2Cblur%2Cexposure%2Cnoise:1 POST https://westcentralus.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=age%2Cgender%2CheadPose%2Csmile%2CfacialHair%2Cglasses%2Cemotion%2Chair%2Cmakeup%2Cocclusion%2Caccessories%2Cblur%2Cexposure%2Cnoise 400 (Bad Request)
|
74
74
|
|
75
75
|
```
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
ボタンを選択したときに、URLを変更することが出来ないのですが、そのやり方も知りたいです。
|
6
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
value="https://upload.wikimedia.org/wikipedia/commons/c/c3/RH_Louise_Lillian_Gish.jpg" />
|
52
52
|
|
53
|
-
``
|
53
|
+
```
|
54
54
|
|
55
55
|
ちなみにエラーメッセージは、下に書いておきます。
|
56
56
|
|
5
test
CHANGED
File without changes
|
test
CHANGED
@@ -54,9 +54,11 @@
|
|
54
54
|
|
55
55
|
ちなみにエラーメッセージは、下に書いておきます。
|
56
56
|
|
57
|
+
|
58
|
+
|
57
59
|
```
|
58
60
|
|
59
|
-
|
61
|
+
file:///D:/WP%E6%BC%94%E7%BF%92/%E7%AC%AC05%E5%9B%9E/WebAPI%E9%85%8D%E5%B8%83%E7%89%A9/WebAPI%E9%85%8D%E5%B8%83%E7%89%A9/default net::ERR_FILE_NOT_FOUND
|
60
62
|
|
61
63
|
```
|
62
64
|
|
4
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,7 +42,7 @@
|
|
42
42
|
|
43
43
|
```
|
44
44
|
|
45
|
-
HTMLはこちらです。
|
45
|
+
HTMLはこちらです。inputimage2も違う画像URLで同じようにあります。
|
46
46
|
|
47
47
|
```HTML
|
48
48
|
|
3
test
CHANGED
File without changes
|
test
CHANGED
@@ -42,6 +42,16 @@
|
|
42
42
|
|
43
43
|
```
|
44
44
|
|
45
|
+
HTMLはこちらです。
|
46
|
+
|
47
|
+
```HTML
|
48
|
+
|
49
|
+
<input type="text" name="inputImage" id="inputImage"
|
50
|
+
|
51
|
+
value="https://upload.wikimedia.org/wikipedia/commons/c/c3/RH_Louise_Lillian_Gish.jpg" />
|
52
|
+
|
53
|
+
``
|
54
|
+
|
45
55
|
ちなみにエラーメッセージは、下に書いておきます。
|
46
56
|
|
47
57
|
```
|
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
``` Java
|
1
|
+
``` JavaScript
|
2
2
|
|
3
3
|
var sourceImageUrl = 'default';
|
4
4
|
|
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
これをある関数の中に書いているのですが一番最後の行でsouceImageUrlが無効の画像urlだというエラーメッセージが来ます。この下のプログラムだと行けます。なぜですか。
|
36
36
|
|
37
|
-
``` java
|
37
|
+
``` javaScript
|
38
38
|
|
39
39
|
var sourceImageUrl = document.getElementById("inputImage").value;
|
40
40
|
|
1
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,4 @@
|
|
1
|
-
|
1
|
+
``` Java
|
2
|
-
|
3
|
-
|
4
2
|
|
5
3
|
var sourceImageUrl = 'default';
|
6
4
|
|
@@ -32,23 +30,27 @@
|
|
32
30
|
|
33
31
|
document.querySelector("#sourceImage").src = sourceImageUrl;
|
34
32
|
|
35
|
-
|
33
|
+
```
|
36
34
|
|
37
35
|
これをある関数の中に書いているのですが一番最後の行でsouceImageUrlが無効の画像urlだというエラーメッセージが来ます。この下のプログラムだと行けます。なぜですか。
|
38
36
|
|
39
|
-
|
37
|
+
``` java
|
40
38
|
|
41
39
|
var sourceImageUrl = document.getElementById("inputImage").value;
|
42
40
|
|
43
41
|
document.querySelector("#sourceImage").src = sourceImageUrl;
|
44
42
|
|
45
|
-
|
43
|
+
```
|
46
44
|
|
47
45
|
ちなみにエラーメッセージは、下に書いておきます。
|
48
46
|
|
47
|
+
```
|
48
|
+
|
49
49
|
file:///D:/WP%E6%BC%94%E7%BF%92/%E7%AC%AC05%E5%9B%9E/WebAPI%E9%85%8D%E5%B8%83%E7%89%A9/WebAPI%E9%85%8D%E5%B8%83%E7%89%A9/default net::ERR_FILE_NOT_FOUND
|
50
50
|
|
51
|
+
```
|
51
52
|
|
53
|
+
```
|
52
54
|
|
53
55
|
Image (async)
|
54
56
|
|
@@ -57,3 +59,5 @@
|
|
57
59
|
onclick @ FaceAPIサンプル2.html:89
|
58
60
|
|
59
61
|
westcentralus.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=age%2Cgender%2CheadPose%2Csmile%2CfacialHair%2Cglasses%2Cemotion%2Chair%2Cmakeup%2Cocclusion%2Caccessories%2Cblur%2Cexposure%2Cnoise:1 POST https://westcentralus.api.cognitive.microsoft.com/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=age%2Cgender%2CheadPose%2Csmile%2CfacialHair%2Cglasses%2Cemotion%2Chair%2Cmakeup%2Cocclusion%2Caccessories%2Cblur%2Cexposure%2Cnoise 400 (Bad Request)
|
62
|
+
|
63
|
+
```
|