How to recognize certain word or voice (like cry) using labview and kinect?

By using labview and kinect, how to recognize some sample world like 'ok', 'help', and voice like crying and screaming?

This is not really a LabVIEW question, but a signal processing question. Do you have a set of crying sounds in order to be able to calibrate whatever algorthm you are trying to implement?
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • Siri won't recognize certain words

    I tried to create a reminder today for a Parents evening I had to attend .
    I used Siri as usual and when asked what the reminder was for I said "parents evening". The two words came up but the reminder just said "parents"
    I tried it again and the same happened so I tried "Parents Night" but the same thing happened.I then tried to just create a reminder for "evening" The word came up but Siri asked  what I wanted to be reminded about again so I tried "night" and the same thing happened. I have tried on a 5s and a 6 both running the latest IOS anyone got any answers ?.Is there certain words you can't use

    Reminders uses data detectors to automatically convert text, or speech via Siri, that refers to date and time into a scheduled date and time (i.e. Today, 6:00 PM). There is no option to turn data detectors off.
    However, you can use a word that they do recognize to schedule a time of day after the word "evening". Depending upon the time of day the reminder is made it will either be scheduled for today, or tomorrow if the time of day has already passed.
    Spoken lines and the results:
    remember parents evening morning
    Parents evening
    Today, 7:00 AM
    remember parents evening noon
    Parents evening
    Today, 12:00 PM
    remember parents evening evening
    Parents evening
    Today, 6:00 PM
    remember parents evening night
    Parents evening
    Today, 7:00 PM
    remember parents evening midnight
    Parents evening
    Tomorrow, 12:00 AM
    Apple Data Detectors

  • How would you guys block portable Apps like Skype,firefox,Kproxy and gtalk etc etc ?

    Hi,
    how would you guys block portable Apps like Skype,firefox,Kproxy and gtalk etc etc ?
    it just runs from USB / Local HDD .
     obviously I could just block all USB ports but is there a better way?

    Hi,
    Preventing users from running portable applications can be done through:
    Configuring specific User Account Control Settings
    Software Restriction Policies
    AppLocker
    More information, please check this similar thread:
    How to block portable application & prevent installation on Active Directory?
    http://social.technet.microsoft.com/Forums/en-US/winserverGP/thread/dfd21e22-b245-4d2b-b9c7-912fe357653e/
    Hope this helps!
    Regards.
    Vivian Wang
    TechNet Community Support

  • How to get UTF-8 encoding when create XML using DBMS_XMLGEN and UTL_FILE ?

    How to get UTF-8 encoding when create XML using DBMS_XMLGEN and UTL_FILE ?
    Hi,
    I do generate XML-Files by using DBMS_XMLGEN with output by UTL_FILE
    but it seems, the xml-Datafile I get on end is not really UTF-8 encoding
    ( f.ex. cannot verifying it correct in xmlspy )
    my dbms is
    NLS_CHARACTERSET          = WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET     = AL16UTF16
    NLS_RDBMS_VERSION     = 10.2.0.1.0
    I do generate it in this matter :
    declare
    xmldoc CLOB;
    ctx number ;
    utl_file.file_type;
    begin
    -- generate fom xml-view :
    ctx := DBMS_XMLGEN.newContext('select xml from xml_View');
    DBMS_XMLGEN.setRowSetTag(ctx, null);
    DBMS_XMLGEN.setRowTag(ctx, null );
    DBMS_XMLGEN.SETCONVERTSPECIALCHARS(ctx,TRUE);
    -- create xml-file:
    xmldoc := DBMS_XMLGEN.getXML(ctx);
    -- put data to host-file:
    vblob_len := DBMS_LOB.getlength(xmldoc);
    DBMS_LOB.READ (xmldoc, vblob_len, 1, vBuffer);
    bHandle := utl_file.fopen(vPATH,vFileName,'W',32767);
    UTL_FILE.put_line(bHandle, vbuffer, FALSE);
    UTL_FILE.fclose(bHandle);
    end ;
    maybe while work UTL_FILE there is a change the encoding ?
    How can this solved ?
    Thank you
    Norbert
    Edited by: astramare on Feb 11, 2009 12:39 PM with database charsets

    Marco,
    I tryed to work with dbms_xslprocessor.clob2file,
    that works good,
    but what is in this matter with encoding UTF-8 ?
    in my understandig, the xmltyp created should be UTF8 (16),
    but when open the xml-file in xmlSpy as UTF-8,
    it is not well ( german caracter like Ä, Ö .. ):
    my dbms is
    NLS_CHARACTERSET = WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET = AL16UTF16
    NLS_RDBMS_VERSION = 10.2.0.1.0
    -- test:
    create table nh_test ( s0 number, s1 varchar2(20) ) ;
    insert into nh_test (select 1,'hallo' from dual );
    insert into nh_test (select 2,'straße' from dual );
    insert into nh_test (select 3,'mäckie' from dual );
    insert into nh_test (select 4,'euro_€' from dual );
    commit;
    select * from nh_test ;
    S0     S1
    1     hallo
    1     hallo
    2     straße
    3     mäckie
    4     euro_€
    declare
    rc sys_refcursor;
    begin
    open rc FOR SELECT * FROM ( SELECT s0,s1 from nh_test );
    dbms_xslprocessor.clob2file( xmltype( rc ).getclobval( ) , 'XML_EXPORT_DIR','my_xml_file.xml');
    end;
    ( its the same when using output with DBMS_XMLDOM.WRITETOFILE )
    open in xmlSpy is:
    <?xml version="1.0"?>
    <ROWSET>
    <ROW>
    <S0>1</S0>
    <S1>hallo</S1>
    </ROW>
    <ROW>
    <S0>2</S0>
    <S1>straޥ</S1>
    </ROW>
    <ROW>
    <S0>3</S0>
    <S1>m㢫ie</S1>
    </ROW>
    <ROW>
    <S0>4</S0>
    <S1>euro_€</S1>
    </ROW>
    </ROWSET>
    regards
    Norbert

  • How do I save a file to a server using flex and coldfusion?

    How do I save a file to a server using flex and coldfusion?
    On the CF side I might need to use this:
    <cffile action="UPLOAD" filefield="Filedata"
    destination="#expandpath('..\somepath)#"
    nameconflict="overwrite">
    And on the flex side I might need to use something like this:
    var sendVars:URLVariables = new URLVariables();
    sendVars.action = "upload";
    var request:URLRequest = new URLRequest();
    request.data = sendVars;
    request.url = _strUploadScript;
    request.method = URLRequestMethod.POST;
    _refUploadFile = new FileReference();
    _refUploadFile = _arrUploadFiles[_numCurrentUpload].data;
    _refUploadFile.addEventListener(ProgressEvent.PROGRESS,
    onUploadProgress);
    _refUploadFile.addEventListener(Event.COMPLETE,
    onUploadComplete);
    _refUploadFile.addEventListener(IOErrorEvent.IO_ERROR,
    onUploadIoError);
    _refUploadFile.addEventListener(SecurityErrorEvent.SECURITY_ERROR,
    onUploadSecurityError);
    _refUploadFile.upload(request, "file", false);
    I just don't know how to put it all together in Coldfusion.

    try this...
    http://cf-creations.co.uk/blog/index.cfm/2008/9/20/Flex--File-Upload-Form--Part-One--Build ing-The-Initial-Form

  • How to edit bitmap which is imported in flash using xml and save the edited bitmap back to xml in flash.

    hi all
    It would be appreciated if any one let me know how to edit
    bitmap which is imported in flash using xml and save the edited
    bitmap back to xml in flash.
    Is it posible to save the bitmap data in flash?
    thanks in advance

    Yes you can... but like I said before you need to upload the
    data from the changes you make to a server.
    In terms of the solution... its unlikely that you'll find one
    specifically for your needs. You will have to learn whatever you
    don't know how already and maybe adapt some existing examples to
    your needs.
    To change the visual state of a movie clip... you just do all
    the regular things that you want to do to it using flash... scale,
    rotation, drawing API , textfields etc in actionscript. If you
    don't know how to how to do that stuff, then you need to learn that
    first. That's basic actionscript.
    You can capture the visual state of a movieclip using the
    BitmapData class. That includes a loaded jpeg. You can also
    manipulate bimatp data using the same class. You should read up on
    that if you don't know how to use it or check out the examples
    below for uploading info.
    For uploading to the server:
    Here's an as2 solution that took 15 secs to find using
    google:
    http://www.quasimondo.com/archives/000645.php
    If you're using as3, google search for "jpeg encoder as3" and
    look through that info. There are also historical answers in the
    forums here related to this type of thing that might help as
    well.

  • How to get data from a USB-UIRT device using Labview?

    How to get data from a USB-UIRT device using Labview?
    I'm trying to get data from a USB-UIRT device, is it posible with Labview?
    I really appreciate your help, 
    thanks

    You may want to contact the developer of the device for the API and DLL.
    http://65.36.202.170/phpBB2/viewforum.php?f=3

  • How to increase the speed of video (avi file) using labview

    How to increase the speed of video (.avi file) using labview? I have  tried this by skiping alternate frames. also I have used  minimum time delay.Is there  any other option for which i can go?
    please suggest me........... 

    Are you using NI Vision IMAQ AVI Read Frame or anther method to read the AVI file?
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

  • How can I do to communicate to parallel port using labview 5.0 and NT ?

    I am trying to write and read from parallel port using Labview 5.0. It does not work with NT.
    How can I do to communicate to parallel port using labview 5.0 and NT ?
    Thank you in advance.
    Regards,

    If you are trying to use In/Out port functions that come with LabVIEW they will not work with NT. I think the AccessHW file at the following link will fix that problem:
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/49664743ded6f1da862564bc004e3a7f?OpenDocument
    Try also this link:
    http://zone.ni.com/devzone/conceptd.nsf/2d17d611efb58b22862567a9006ffe76/0989d3d9dafae64e8625680400679736?OpenDocument
    and do some searchs at NI.com for parallel port, you should find some more usefull info.
    Good luck
    Brian

  • How to create a follow up page in scripts using Duplex and Tumble Duplex

    How to create a follow up page in scripts using Duplex and Tumble Duplex in print mode of scripts ?

    Hi ,
    Set the next page property as duplex , and change the print property back to back

  • How can I uninstall garageband?  I don't use it and it just takes up space!, How can I uninstall garageband?  I don't use it and it just takes up space!

    How can I uninstall garageband?  I've never used it and don't intend to.  My startup disk is full and I need to dump some apps.  Any advice would be appreciated.

    GarageBand FAQ: Delete all traces of GB

  • My iPhone 4s sleep button is working like it use to and i have to press it real hard for it to work at times

    my iPhone 4s sleep button is working like it use to and i have to press it real hard for it to work at times

    Take it to an Apple Store and have them take a look.  Make a Genius bar appointment.

  • I would like to use Safari AND firefox, how can I achieve that?

    For certain things I need to be able to use Safari and would like to know if you can help me to do that without getting rid of Firefox.
    Thanks, Bneeds

    What browser is currently set as the default browser?
    If Firefox is set as the default browser then it is possible that links that open the default browser will now open Firefox.
    *https://support.mozilla.org/kb/how-make-web-links-open-firefox-default
    *http://kb.mozillazine.org/Default_browser
    You may have to set Safari again as the default browser.
    *Safari > Preferences > General > Default Web Browser > "Default web browser"

  • How to program limit switches as on/off switches using LabView

    I am attempting to write a program in LabView (using an NI USB-6008 controller) which will turn a pump on or off based on the water level in a container.  I am using a floatation device along with limit switches (something like an electronic version of a toilet float switch) which I would like to use to signal the pump to turn on or off.  When the bottom limit switch is triggered, I want the pump to turn on and remain on until the top limit switch is triggered.  When the top switch is triggered, I want the pump to turn off until the bottom switch is triggered.  I can't just use a case structure because the pump would only stay on when the switch was actually being depressed.  After searching around, I've seen some indication that you could potentially use a toggle command, a trigger command, or an event structure to do this, but I'm not sure which (if any) would actually work best or the particulars about how to configure those commands to do what I want.  I am still learning LabView, so simplicity in answering would be appreciated.  Thank you.

    Use a state machine architecture.
    Read both digital lines for the "limit" switches. Depending on the reading, switch on or off the pump (in case a limit was triggered), otherwise, keep the status of the pump.
    As water level shouldnt rise/sink very fast (i hope), a polling time of about 200-500ms sounds reasonable.
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • How can I view/debug via probes with TestStand using Labview Vi's?

    Hello, I would like to debug a Test Stand Sequence that uses Labview Vi's. Anybody know how?

    Hi,
    You cant use the vi probes in TestStand. But you can set breakpoints in TestStand and then step in the labview VI's.
    TestStand 3.x has improved debugging capabilities over TS2.0.1.
    You can also set you break points in your Labview VI's and when your test code is executed the VI will stop when your break point is reached. Then you can use your probes as you would normally do in your labview.
    In TestSTand you also have the ability to set up watches on your teststand variables and to beable to modifiy these as well.
    I think the TestStand User Manual will help explain in more detail.
    Hope this helps
    Regards
    Ray Farmer
    Regards
    Ray Farmer

Maybe you are looking for