使用本地<映像文件>进行微软自定义视觉



我不知道该怎么做,但我需要帮助来让我的微软自定义愿景工作。我正在使用 javascript 将我的 html 文档链接到自定义视觉,但我不知道如何使用与我的 html 和 js 文件位于同一文件夹中的本地图像文件,有人可以帮助我编写任何代码吗?

        },
        type: "POST",
        // Request body
        data: "{body}",
    })
    .done(function(data) {
        alert("success");
    })
    .fail(function() {
        alert("error");
    });
});

说明告诉我将 {body} 更改为

几点:

  • 最新的 API 是 v3.0(不是你提到的 2.0(,看这里
  • 他们在页面上提供的代码示例中有一个小错误:标头键Prediction-Key出现 2 次(大写与小写key(。你只需要它1次
  • 您不能从安全方面直接在 js 中加载本地文件

因此,如果您想"从头开始"执行此操作,则可以执行以下操作,必须手动选择文件:

<!DOCTYPE html>
<html>
<head>
    <title>JSSample</title>
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
</head>
<body>
    <input type='file' accept='image/*' onchange='openFile(event)' />
    <br />
    <img id='output' style="height:100px; width:100px;" />
    <script type="text/javascript">
        var openFile = function(file) {
            var input = file.target;
            var reader = new FileReader();
            reader.onload = function(){
                var dataURL = reader.result;
                var params = {
                    // Request parameters
                    "application": "myTestApp"
                };
                var parts = dataURL.split(';base64,');
                var contentType = parts[0].split(':')[1];
                var raw = window.atob(parts[1]);
                var rawLength = raw.length;
                var uInt8Array = new Uint8Array(rawLength);
                for (var i = 0; i < rawLength; ++i) {
                    uInt8Array[i] = raw.charCodeAt(i);
                }
                var imgContent = new Blob([uInt8Array], { type: contentType });
                $.ajax({
                    url: "https://southcentralus.api.cognitive.microsoft.com/customvision/v3.0/Prediction/__YOUR_APPLICATION_ID__/classify/iterations/__YOUR_ITERATION_ID__/image?" + $.param(params),
                    beforeSend: function(xhrObj){
                        // Request headers
                        xhrObj.setRequestHeader("Prediction-Key","__YOUR_PREDICTION_KEY__");
                        xhrObj.setRequestHeader("Content-Type","application/octet-stream");
                    },
                    type: "POST",
                    // Request body
                    data: imgContent,
                    processData: false
                })
                .done(function(data) {
                    alert("success");
                    console.log(data);
                })
                .fail(function() {
                    alert("error");
                });
            };
            reader.readAsDataURL(input.files[0]);
        };
    </script>
</body>
</html>

此外,ou 可以查看 Node 中的现有示例.js在这里,他们从本地文件调用预测:https://github.com/Azure-Samples/cognitive-services-node-sdk-samples/tree/master/Samples/customvision

最新更新