hands free cortana interaction
#1

need seminar report on hands free corana interaction
Reply
#2
need seminar report on hands free corana interaction
Reply
#3
hands free cortana interaction

Getting your work done by not launching the desired app is more common these days. Since every platform has its own personal assistant to get your work done as quickly as possible, why not leverage it. If you are not sure yet about what kind of personal assistant I’m talking about. Well they are Cortana, Siri and Google Now. They are available in Windows, iOS and Android devices respectively. Let me talk about Cortana today and show you how you can integrate her in your own app. Cortana was introduced initially with Windows Phone 8.1 and now she is also available in Windows 10 devices (devices runs on Windows 10 OS). In Windows 10 devices, you can ask Cortana to do stuff for you. She will do the specific task and return the outcome in Cortana canvas. By the way, you can also type in the canvas to get your work done if you want to maintain privacy and of course you don’t want to shout to Cortana in public every single time. You can interact with Cortana in Windows simply by saying “Hey Cortana”. And you will be presented with the Cortana canvas.

public sealed class VoiceCommandService : IBackgroundTask
{
private BackgroundTaskDeferral _deferral;
VoiceCommandServiceConnection _voiceServiceConnection;

public async void Run(IBackgroundTaskInstance taskInstance)
{
var triggerDetails = taskInstance.TriggerDetails as AppServiceTriggerDetails;
if (triggerDetails?.Name == "SimpleTodoVoiceCommandService")
{
_deferral = taskInstance.GetDeferral();
var cancelledTokenSource = new CancellationTokenSource();
_voiceServiceConnection =
VoiceCommandServiceConnection.FromAppServiceTriggerDetails(triggerDetails);
var voiceCommand = await _voiceServiceConnection.GetVoiceCommandAsync();

switch (voiceCommand.CommandName)
{
case "todoBackgroundCommandList":
var command =
voiceCommand.SpeechRecognitionResult.SemanticInterpretation.Properties["command"][0];
if (command == "pending")
await ShowPendingTasks();
break;

default:
LaunchAppInForeground();
break;
}

taskInstance.Canceled += (s, e) =>
{
cancelledTokenSource.Cancel();
_deferral.Complete();
};

_voiceServiceConnection.VoiceCommandCompleted += (sender, args) =>
{
cancelledTokenSource.Cancel();
_deferral.Complete();
};

_voiceServiceConnection.VoiceCommandCompleted += (sender, args) =>
{
cancelledTokenSource.Cancel();
};
}
}
}
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Popular Searches: hands all over, hands free car kits, hands free driven car topic in pdf, top 10 hands free car kit, short hands in hindi, differentiate between pedestal hands drilling machine, car hands free kits,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  seminar report on eye movement based human computer interaction 1 1,085 07-04-2017, 03:00 PM
Last Post: jaseela123d
  eye movement based human computer interaction techniques ppt 2 825 28-03-2017, 02:30 PM
Last Post: jaseela123d
  multi touch interaction ppt with abstract free download 1 726 14-03-2017, 01:55 PM
Last Post: jaseela123d
  free cell c airtime vouchers free cell c airtime cheat codes free cell c airtime hack 4 3,419 12-10-2016, 09:17 AM
Last Post: maria butcher 84
  free cell c airtime vouchers free cell c airtime cheat codes free cell c airtime hack 2 2,996 25-09-2016, 09:00 AM
Last Post: Kida
  Powerpoint on smart transmitters and receivers for under water free space optical communication free download 10 9,038 15-07-2016, 02:15 PM
Last Post: jaseela123d
  free cell c airtime vouchers free cell c airtime cheat codes free cell c airtime hack 4 3,397 04-05-2016, 10:09 AM
Last Post: dhanabhagya
  objectives of industry institute interaction ppt 2 2,186 04-01-2016, 02:09 PM
Last Post: seminar report asees
  eye movement based human computer interaction seminars full report 1 656 22-07-2015, 02:43 PM
Last Post: seminar report asees
  hand gesture recognition for human machine interaction 1 556 27-06-2015, 02:08 PM
Last Post: seminar report asees

Forum Jump: