microsoft-cognitive

Microsoft Azure Cognitive Services Handwriting Detection Bounding Box Parameters

两盒软妹~` 提交于 2021-02-18 21:01:24
问题 I am currently using Microsoft Azure Cognitive Services Handwriting Detection API. The API returns a set of values for the bounding box: { "boundingBox": [ 2, 52, 65, 46, 69, 89, 7, 95 ], "text": "dog", . . . I would like to make sense of these 8 parameters. What is their significance and what do they reflect? I tried hard finding about them in Microsoft API's documentation, but of no use. Kindly help me understand what these parameters mean or link me to some place where this doubt can be

Speech-to-text large audio files [Microsoft Speech API]

时光怂恿深爱的人放手 提交于 2021-02-07 18:42:46
问题 What is the best way to transcribe medium/large audio files, ~ 6-10 mins each file, using Microsoft Speech API? Something like batch audio files transcription? I have used the code provided in https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/speech-to-text-sample, for continuously transcribing speech, but it stops transcribing at some point. Is there any restriction on the transcription? I am only using the free trial account atm. Btw, I assume there is no difference

Can't pip microsoft azure-cognitiveservices-speech?

雨燕双飞 提交于 2021-02-05 05:31:11
问题 Following the guide here to install the microsoft azure text to speech SDK: https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/quickstart-python#install-the-speech-sdk It says to run pip install azure-cognitiveservices-speech , but unfortunately this returns Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech I've tried adding the version # at the end

Can't pip microsoft azure-cognitiveservices-speech?

 ̄綄美尐妖づ 提交于 2021-02-05 05:28:05
问题 Following the guide here to install the microsoft azure text to speech SDK: https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/quickstart-python#install-the-speech-sdk It says to run pip install azure-cognitiveservices-speech , but unfortunately this returns Could not find a version that satisfies the requirement azure->cognitiveservices-speech (from versions: ) No matching distribution found for >azure-cognitiveservices-speech I've tried adding the version # at the end

How to call QnA Maker on a waterfall dialog using C#?

倾然丶 夕夏残阳落幕 提交于 2021-01-27 11:14:55
问题 I am trying to call QnA Maker on a waterfall dialog step . How do I call it from this watterfall step, do I need to set up QnA On the waterfall step, do I need to call QnA from a LUIS intent , what can I do? I need it to get the first result from the QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

How to call QnA Maker on a waterfall dialog using C#?

青春壹個敷衍的年華 提交于 2021-01-27 11:12:41
问题 I am trying to call QnA Maker on a waterfall dialog step . How do I call it from this watterfall step, do I need to set up QnA On the waterfall step, do I need to call QnA from a LUIS intent , what can I do? I need it to get the first result from the QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

How to call QnA Maker on a waterfall dialog using C#?

余生长醉 提交于 2021-01-27 11:12:34
问题 I am trying to call QnA Maker on a waterfall dialog step . How do I call it from this watterfall step, do I need to set up QnA On the waterfall step, do I need to call QnA from a LUIS intent , what can I do? I need it to get the first result from the QnA using the step context from the previous question. Can anyone help? Code: private async Task<DialogTurnResult> QnaAsync(WaterfallStepContext stepContext, CancellationToken cancellationToken) { var response = await qnaMaker.GetAnswersAsync

Using Azure Face Api in Python, How to Return a single faceId or a group of FaceIds if the same person is detected in Video Stream?

爷,独闯天下 提交于 2021-01-25 03:58:33
问题 I am using Azure Face APi to detect faces in video stream, but for each detected face Azure returns a unique faceId( which is exactly what the documentation says). The problem is, Let's say Mr.ABC appears in 20 video frames, 20 unique faceIds gets generated. I want something that Azure Face should return me a single faceId or a group of FaceIds generated particularly for Mr.ABC so that I can know that its the same person that stays in front of camera for x amount of time. I have read the

Cognitive Services - How to add multiple Faces from a Live Stream to Azure FaceList ? (Python)

安稳与你 提交于 2021-01-01 09:22:24
问题 Problem Background: I have created an Azure FaceList and I am using my webcam to capture live feed and: sending the stream to Azure Face Detect getting Face Rectangle returned by Face Detect using the returned Face rectangle to add Face Detected from Live Video Stream to my FaceList. (I need to create Face List in order to solve the problem I explained in my other question which is answered by Nicolas, which is what I am following) Problem Details: According to Azure FaceList documentation at