0

pickphoto クロス メディアを使用して画像を送信し、予測の結果を取得することで、Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction 機能を使用しようとしています。画像を URL またはストリームとして渡そうとしましたが、悪いリクエストが返ってきました。私は正しい予測キーとエンドポイントを持っていることを知っています。これは、画像をメソッドに渡す方法であることを教えてくれるトレーニングに取り組んでいるためです。Cross Media ピック写真パッケージから画像を変換する正しい方法は何ですか?

private async void UplodatePictureButton_Clicked(object sender, EventArgs e)
{
    await CrossMedia.Current.Initialize();
    MediaFile file;
    if (!CrossMedia.Current.IsPickPhotoSupported)
    {
        await DisplayAlert("No upload", "Picking a photo is not supported", "OK");
        return;

    }
    file = await CrossMedia.Current.PickPhotoAsync();
    if (file == null)
    {
        return;
    }

    MainImage.Source = ImageSource.FromStream(() =>
    {
        var stream = file.GetStream();

        return stream;
    });


    // Create the Api, passing in the training key
    CustomVisionTrainingClient trainingApi = new CustomVisionTrainingClient()
    {
        ApiKey = trainingKey,
        Endpoint = SouthCentralUsEndpointTraining
    };
    var projects = trainingApi.GetProjects();
    var project = projects.FirstOrDefault(p => p.Name == "Car");
    CustomVisionPredictionClient endpoint = new CustomVisionPredictionClient()
    {
        ApiKey = predictionKey,
        Endpoint = SouthCentralUsEndpointPrediction
    };


    var result = endpoint.ClassifyImageUrl(project.Id, project.Name, new Microsoft.Azure.CognitiveServices.Vision.CustomVision.Prediction.Models.ImageUrl(file.Path));



    foreach (var c in result.Predictions)
    {
        Console.WriteLine($"\t{c.TagName}: {c.Probability:P1}");
    }


}

未処理の例外: Microsoft.Azure.CognitiveService.Vision.CustomerVision.Prediction.Models.CustomVisionErrorException: 操作が無効なステータス コード "BadRequest" を返しました予測が必要です。

これがコードの写真です: code ここに問題の写真があります: problem

4

1 に答える 1