Kinect Studio export Data (to .csv, etc) ?

Hello guys,
I'm really like the Kinect Studio Application, but I haven't found a way to export data, eg. position of body elements, or raw data. Is there a way to do so?
thanks!

You can do that from a regular Kinect application that would use the Kinect SDK. KStudio can be thought of as a virtual sensor in this respect. If you can record a regular live stream to .csv then just playback the clip and that data will be sent through
the runtime to any application.
Carmine Sirignano - MSFT

Similar Messages

  • Exporting data to csv files

    Please can you help an Oracle newcomer?
    Below is a script (which I took from the forums) that I used to
    run in Lite to export data to a csv file.
    As you can see I am having problems with running the same file
    in 8i - It starts off OK i.e. asking for the name of the table
    but then, instead of completing the full script it executes a
    few lines then keeps asking me for the name of the table. I
    suspect there is something wrng in my environment settings
    (Comments ON etc.) but I have checked everything with no success.
    Any help would be much appreciated as this is a really useful
    script which I use the whole time.
    Thanks very much for your help.
    Regards
    Andrew
    SQL>
    1 SET ECHO OFF
    2 SET FEEDBACK OFF
    3 SET HEADING OFF
    4 SET PAGESIZE 0
    5 SET TIMING OFF
    6 SET VERIFY OFF
    7 ACCEPT name_of_table PROMPT 'Enter the name of the table
    you wish to convert: '
    8 SPOOL query.sql
    9 SELECT 'SPOOL ' || UPPER ('&name_of_table') || '.txt'
    10 FROM DUAL;
    11 SELECT 'SELECT ' || column_name
    12 FROM all_tab_columns
    13 WHERE table_name = UPPER ('&name_of_table')
    14 AND column_id = 1;
    15 SELECT '|| '','' || ' || column_name
    16 FROM all_tab_columns
    17 WHERE table_name = UPPER ('&name_of_table')
    18 AND column_id > 1;
    19 SELECT 'FROM ' || UPPER ('&name_of_table') || ';'
    20 FROM DUAL;
    21 SELECT 'SPOOL OFF'
    22 FROM DUAL;
    23 SPOOL OFF
    24* START query
    25 /
    Enter value for name_of_table: new_table
    old 9: SELECT 'SPOOL ' || UPPER ('&name_of_table') || '.txt'
    new 9: SELECT 'SPOOL ' || UPPER ('new_table') || '.txt'
    Enter value for name_of_table: new_table
    old 13: WHERE table_name = UPPER ('&name_of_table')
    new 13: WHERE table_name = UPPER ('new_table')
    Enter value for name_of_table: new_table
    old 17: WHERE table_name = UPPER ('&name_of_table')
    new 17: WHERE table_name = UPPER ('new_table')
    Enter value for name_of_table: New_table
    old 19: SELECT 'FROM ' || UPPER ('&name_of_table') || ';'
    new 19: SELECT 'FROM ' || UPPER ('New_table') || ';'
    SET ECHO OFF
    ERROR at line 1:
    ORA-00922: missing or invalid option

    Thanks for your help - problem solved I was using Run sql file
    instead of Start sql file - oops!

  • Export data to CSV in SQL Server

    Hi,
    I am trying to write a Java JDBC program exporting data
    from the database into CSV file using SQL Server 2005 DB.
    From that query:
    String="SELECT * into OUTFILE '"+filename+'" FIELDS TERMINATED BY ',' FROM table1";
    getting: "SQLException: Incorrect syntax near 'myfilename.csv'
    Yes, I put filename in single quotes. Same problem without them, but it strips out csv file extension.
    Using JTDS driver 1.2.4 on WinXP.
    Will later need to insert that into a batch process.
    What is a reason for that error? - I saw many many posts on the net, but no good explanations so far.
    So how do I fix that ?
    Is there a better way of doing it in SQL server ?
    I am a Java developer, not a DBA or Unix Sys Admin ;-)
    Please help !
    TIA,
    Oleg.

    Here is one way to do it in Java. You can customize as you like. Do a Google on how to get a DataSource (or DriverManager) connection for SqlServer. If you do not know how to get a PrintWriter, you do something like:
    PrintWriter writer = new PrintWriter(new FileOutputStream('results.csv");This will generate a generic CSV. It is probably not ideal, but should get you started.
        public final void serialize(final DataSource ds, final String sql, final PrintWriter writer)
            throws SQLException {
            Connection conn = null;
            PreparedStatement stmt = null;
            ResultSet results = null;
            try {
                conn = ds.getConnection();
                stmt = conn.prepareStatement(sql);
                results = stmt.executeQuery();
                ResultSetMetaData meta = results.getMetaData();
                int columnCount = meta.getColumnCount();
                while (results.next()) {
                    for (int current = 0; current < columnCount; current++) {
                        Object value = results.getObject(current + 1);
                        if (current > 0) {
                            writer.print(", ");
                        writer.print("\"" + (value == null ? "" : value.toString()) + "\"");
                    writer.println();
                writer.flush();
            finally {
                if (results != null) {
                    try {
                        results.close();
                    catch (SQLException e) {
                        e.printStackTrace();
                if (stmt != null) {
                    try {
                        stmt.close();
                    catch (SQLException e) {
                        e.printStackTrace();
                if (conn != null) {
                    try {
                        conn.close();
                    catch (SQLException e) {
                        e.printStackTrace();
        }My advice is to use BCP to start. The docs for the tool are here: [http://msdn.microsoft.com/en-us/library/aa174646(SQL.80).aspx]. You can manipulate the results in Access or Excel if you need to. Since it seems you are being thrown into an emergency and getting it fast is more important than you spending months learning additional Java API's.
    - Saish

  • Export data in CSV and store the file in local drive

    Hi,
    Here is the requirements.
    Fetch the values from table (around 60000 records), and export them into CSV file and store the file in local drive.
    I have written servlet to to this and it is working fine expect saving the file in local drive. At the moment, it is asking to save as in local drive. i want to save the file automatically in particular path (/var/www/files/). Below is the code.
    String file = "CandidatesDetails" + sd + ".csv";
                        queryString = "select * from candidate where candidate.status='A'";
                        connection = ConnectionPoolHelper.getConnection();
                        response.setContentType("application/csv");
                        response.setHeader("content-disposition", "filename=" + file);
                        System.out.println("Query= " + queryString);
                        ps = connection.prepareStatement(queryString,
                                  ResultSet.TYPE_SCROLL_INSENSITIVE,
                                  ResultSet.CONCUR_READ_ONLY);
                        rs = ps.executeQuery();
                        datas = "CANDIDATE ID,CANDIDATE TITLE,FIRST NAME,LAST NAME,E-MAIL,NATIONALITY ID,NATIONALITY,COUNTRY ID,COUNTRY NAME,INDUSTRY ID,INDUSTRY DESCRIPTION,EXPERIENCE,DATE OF BIRTH,HEAR ABOUT US\n";
                        oout.write(datas);
                        String country = "";
                        String nationality = "";
                        String hearABtUs = "";
                        while (rs.next()) {
                             nationality = rs.getString(7);
                             if (nationality == null)
                                  nationality = "";
                             else if (nationality.equals("null"))
                                  nationality = "";
                             country = rs.getString(9);
                             if (country == null)
                                  country = "";
                             else if (country.equals("null"))
                                  country = "";
                             hearABtUs = rs.getString(14);
                             if (hearABtUs == null)
                                  hearABtUs = "";
                             else if (hearABtUs.equals("null"))
                                  hearABtUs = "";
                             else
                                  hearABtUs = hearABtUs.replaceAll(",", ";");
                             datas = rs.getInt(1) + "," + rs.getString(2) + ","
                                       + rs.getString(3) + "," + rs.getString(4) + ","
                                       + rs.getString(5) + "," + rs.getInt(6) + ","
                                       + nationality + "," + rs.getInt(8) + "," + country
                                       + "," + rs.getInt(10) + "," + rs.getString(11)
                                       + "," + rs.getString(12) + "," + rs.getString(13)
                                       + "," + hearABtUs + "\n";
                             oout.write(datas); Regards,
    Dongan.

    Here is the first few lines
    public void doGet(HttpServletRequest request, HttpServletResponse response)
                   throws ServletException, IOException {
              HttpSession session = request.getSession(true);
              String datas = "";
              PreparedStatement ps = null;
              ResultSet rs = null;
              String queryString = "";
              Connection connection;
              PrintWriter oout = response.getWriter();
              java.util.Date d = new java.util.Date();
              SimpleDateFormat dateformat = new SimpleDateFormat("dd-MMM-yyyy");
              String sd = dateformat.format(d);
              tryAt the moment, when i run http://localhost:8080/project/CandidatesDetail, it will ask me to save the file somewhere. I should manually mention the path to save the file. what i want is, it should automatically save it in the location C:\projects\files\.
    thanks.
    Regards,
    Dongan
    Edited by: Dongan on Oct 26, 2007 5:22 AM

  • Export Data as CSV - PHP/MySQL

    Hi, is it possible to export MySQL data as CSV using developer toolbox? My PHP knowledge is very basic so please be gentle.
    Thanks
    Bert

    Hi Bert,
    no, ADDT doesn´t provide this feature, but there are quite some other extensions out there to export results from a recordset as CSV -- guess you´ll find some listed in the Dreamweaver Exchange.
    Günter Schenk
    Adobe Community Expert, Dreamweaver

  • How to change the default structure when exporting data in CSV format?

    Hello,
    can some one tell us how to change the default structure in CRM when exporting lists in CSV format (with Option "Always use unformatted list format (CSV) for download" ? Because we want to add a new structure for our own -is it possible ?
    If it is possible where can we find these structure ? In the blueprint customizing ?
    Thank you very much,
    Christian

    There is a workaround to move from 1.5 version to the older 1.4 version. But this could be specific to the browser setting the JRE version.
    Excerpts from sun docs:
    However, a user can still run older versions. To do so, launch the Java Plug-in Control Panel for the older version, then (re)select the browser in the Browser tab.
    Example:
    Assume you are running on Microsoft Windows with Microsoft Internet Explorer, have first installed version 1.4.2, then version 5.0, and you want to run 1.4.2.
    Go to the j2re1.4.2\bin directory where JRE 1.4.2 was installed. On a Windows default installation, this would be here: C:\Program Files\Java\j2re1.4.2\bin
    Double-click the jpicpl32.exe file located there. It will launch the control panel for 1.4.2.
    Select the Browser tab. Microsoft Internet Explorer might still appear to be set (checked). However, when 5.0 was installed, the registration of the 1.4.2 JRE with Internet Explorer was overwritten by the 5.0 JRE.
    If Microsoft Internet Explorer is shown as checked, uncheck it and click Apply. You will see a confirmation dialog stating that browser settings have changed.
    Check Microsoft Internet Explorer and click Apply. You should see a confirmation dialog.
    Restart the browser. It should now use the 1.4.2 JRE for conventional APPLET tags.
    Details are here
    http://java.sun.com/j2se/1.5.0/docs/guide/deployment/deployment-guide/jcp.html
    My system (Windows XP) has the version 1.5_09 set as the default. However i just installed JRE 1.5_06 and would like to revert back to _06 as the default JRE..
    Will update if i find more information

  • How to export data to .csv and send that file to folder using sql commands?

    Really hoping someone can provide some code sample or point me in the right direction (with examples using sql).
    I am using oracle 11g with plsql developer. My requirement is that the data retrieval should be automatic. That means when query a data in oracle table , the data should be convert into .csv file and then it should send that to some specific folder.
    Example: Assume that student_sub1 table have all students subject1 data.when i write a query like select * from student_sub1 where student=1, the student1 data should convert into .csv file and then the .csv file should go to student1 folder.
    Hence I am requesting you to suggest me how write a sql code to convert the data into .csv file and to create a folder to send that file using oracle.
    Your inputs helps me alot.
    Thanks in advance!!!!
    Waiting for your replies.... Cheers

    981145 wrote:
    Really hoping someone can provide some code sample or point me in the right direction (with examples using sql).
    I am using oracle 11g with plsql developer. My requirement is that the data retrieval should be automatic. That means when query a data in oracle table , the data should be convert into .csv file and then it should send that to some specific folder.
    Example: Assume that student_sub1 table have all students subject1 data.when i write a query like select * from student_sub1 where student=1, the student1 data should convert into .csv file and then the .csv file should go to student1 folder.
    Hence I am requesting you to suggest me how write a sql code to convert the data into .csv file and to create a folder to send that file using oracle.
    Your inputs helps me alot.
    Thanks in advance!!!!
    Waiting for your replies.... CheersSET COLSEP ,
    spool student1.csv
    select * from student_sub1 where student=1;
    spool off
    How do I ask a question on the forums?
    SQL and PL/SQL FAQ
    Handle:     981145
    Status Level:     Newbie
    Registered:     Jan 10, 2013
    Total Posts:     25
    Total Questions:     10 (8 unresolved)
    I extend my condolences to you since you rarely get answers to your questions here.

  • How to export data to .csv file  ?

    Hi guys, I know this topic is covered many times in this forum. How do I export my table data to a csv file when my data already has some , (commas) in it. For example, I have two columns in a table, ID and DESCRIPTION. The DESCRIPTION column has data which has , (commas) in it. When I export the data using the following script, I see multiple columns in my excel file as DESCRIPTION has data with commas and each part of it is shown as a separate column in excel sheet.
    set heading off
    set echo off;
    set pause off;
    spool tbl_account.csv;
    select To_Char(ID)|| ',' || To_Char(Description) From tbl_account;
    spool off;
    Thanks in advance

    Have you thought about putting those values between quotation marks?
    "test,test" for example would end up in one cell.
    C.

  • How to export data to csv file on a scheduled basis

    Hi,
    I'm trying to do something that should probably be simple but I just can't figure it out.
    I have an existing MS SQL database (2008 R2). I have a very simple SQL script. I need to run this script on a daily basis and save the results as a .csv file.
    I've tried creating a job in SQL Manager - that didn't work. Then I found a tutorial that had me use MS Visual Studio... couldn't get that to function either.
    Can someone help me understand what program I should be using, and how to go about creating this as a task / job that can run on a scheduled basis?
    Thank you!
    Chris

    Hi, you can follow the below steps to get your work done -
    Create a batch file (.bat) and dump the following text into it
              sqlcmd -S myServer -d myDB -E -Q "select col1, col2, col3 from SomeTable" -o "MyData.csv" -h-1 -s"," -w 700
              Replace myServer with your server name,
    myDB with your Database name and then replace the query with your actual query.
             -h-1 removes column name headers from the result
             -s"," sets the column seperator to ,
             -w 700 sets the row width to 700 chars (this will need to be as wide as the longest row or it will wrap to the next line)
    Save the batch file and the schedule it as per your requirement.
    Hope, that helps.
    -Vinay Pugalia
    If a post answers your question, please click "Mark As Answer" on that post and
    "Mark as Helpful".
    Web : Inkey Solutions
    Blog : My Blog
    Email : Vinay Pugalia

  • How to export data in csv

    hai ;
    can u advise me, how to export the value from databse table to csc and pdf format
    please can you provide some sample code
    thanks..

    Doesn't work that way here. Try something, post some code if you get stuck.
    No-one is going to write your code for you.
    You will need to use JDBC to query your database, and there are plenty of CSV libraries available for free, or write your own.

  • OBIEE 11g - issue when export to a csv file

    Hello,
    I have an issue when I try to export to a csv file a report having numeric feild, when I export and open the file in notepad the trailing zeros to the right of decimal points do not show up. When export to another formats (such as excel, pdf) the trailing zeros appears correctly. e..g, 100.00 appears as 100, 100.50 appears as 100.5.
    Do you know what can be done in order to have trailing zeros to the right of decimal points to appear in a csv?
    Thanks

    This is a bug see below.
    Bug 13083479 : EXPORT DATA TO CSV FORMAT DOES NOT DOWNLOAD EXPANDED HIERARCHICAL COLUMNS
    Proposed workaround : OBIEE 11.1.1.5: Pivot Table Report Export To Csv Does Not Include Hierarchical Data [ID 1382184.1]
    Mark if answered.!
    Thanks,
    SVS

  • How to import data from CSV file with columns separated by semicolon?

    I migrate database from MS SQL 2008 to ORACLE 11g
    I export data to CSV file from MS SQL
    then I try to import it to Oracle
    several tables goes fine using Import data option in the SQL Developer
    Standard CSV files with data separated by comma were imported.
    chars, date (with format string), and integer data are imported via import wizard without problems
    the problems were when I try to import table with noninteger numbers with modal part separated by comma not by dot
    comma is the standard separator for columns in CSV file
    so I must change the standard separator to semicolon
    then the import wizard have problem to correct recognize the columns data because it use only standard CSV comma separator :-/
    In SQL Developer 1.5.3 Tools -> Preferences -> Migration -> Data Move Options
    I change "End of Column Delimiter" to ; but it doens't work
    Is this possible to change the standard column separator for import data wizzard in SQL Developer 1.5.3?
    Or maybe someone know how to import data in SQL Developer 1.5.3 from CSV when CSV colunn separator is set to semicolon?

    A new preference has been added to customize the import delimiter in main code line. This should be available as part of future release.

  • Export data File Browse dialog box does not appear

    I am trying to export data to CSV and when I click on Browse to locate proper directory, nothing happens (the dialog doesn't show up).
    I normally right-click on any cell in "Result" TAB, choose Export->CSV.
    On the same note CSV format is a workaround to get to Excel. Is there an extension or option to save directly in Excel format. This would avoid having the client to open the file in Excel and then do a Save As with the proper XLS format instead of CSV.
    Using Win XP client connecting to 10.2 database. Using latest SQL Developer version (downloaded on Friday may 5th version 1.0.0.15.27).
    Thanks
    Robert
    Message was edited by:
    user509017

    I haven't seen the browse button problem that you describe. Is it still occurring? On all exports? There have been issues with export rerunning the query a few times which makes the application appear to lock up. Could that be the issue?
    There is an excel add-in. I assume that it isn't included for licensing issues, but it comes from one of the core developers of this app.
    esdev.sf.net.
    Regards,
    Eric

  • Questions when export data to excel

    My platform
    Windows2000(Chinese version).
    Oracle 9i R2 charset ZHS16GBK
    Patch 2323002,2632931,2499827
    JDev903 + BI Beans 903a
    There are two problems
    1. Everything goes well. But when the project is deployed, the Export function will return a error page.
    2. When export data to .csv or .txt using BIB control "ExportOptions", it appears that the chinese fonts all are displayed as "????"

    We need more information on issue #1. What information does the the
    error page contain? If it contains a stack trace / BI Beans error, then
    please post it. If it does not, then please look for an exception
    stack / error in the servlet log. And finally, does the export work
    when running the project in JDeveloper?
    Issue #2 can be resolved by setting the export character encoding.
    What type of application are you trying to deploy (
    JSP, UIX, or Generated Servlet Application )? The mechanism for
    specifying the export character encoding is different for each type of
    application. UTF-8 encoding works on most systems so that is a safe
    default, but the Chinese version of Windows may require a more specific
    character set, such as WINDOWS-936 ( Simplified Chinese ), BIG5 (
    Traditional Chinese ), or WINDOWS-950 ( Traditional Chinese).

  • Is there FM to download data into csv format?

    Got to create customized rfc/bapi and to export data in csv format?
    Any idea?

    HI,
    check this program.
    <b>report ZTEST2.
    data:  file type string,
           path type string,
           file_path type string.
    data: itab type standard table of cskt.
    start-of-selection.
      SELECT * FROM cskt INTO TABLE itab.
      call method cl_gui_frontend_services=>file_save_dialog
          changing FILENAME = file
                   path     = path
                   fullpath = file_path.
      check not file_path is initial.
      call method cl_gui_frontend_services=>gui_download
        exporting    filename                = file_Path
                      WRITE_FIELD_SEPARATOR = 'X'
         changing    data_tab                = itab.</b>
    Regards,

Maybe you are looking for

  • Status of Outbound Delivery in case of batch split

    Hi All, I have a query regarding the status updation of outbound delivery in case of a batch split. I have a delivery with 10 qty of batch managed material and is distributed from ERP to EWM. As per standard SAP, the following 2 options exist to carr

  • How do I get Labview 7 to read from RS232

    I have a power meter that sends output to a serial port. I need to get that output into Our LabView program. We have the Serial code from the power meter. It sometimes works when the lightbulb icon is clicked, otherwise it does not. ?

  • Unable to initiate HotSync...​error message

    Unfortunately, I let my battery drain, not sure how long it was like that, in my M515 and had to do a soft reset.  I lost all my word documents, excel, etc. When trying to hotsync, I'm getting this error: Unable to initiate operation because the port

  • Math on real values in a cell

    In Excel =300-200 How to do same in Numbers?

  • Problem in Text Table

    Hi, I have created a Custom table and Text table, implemented foreign key relationship from text table to Custom table. Then i have created a view, added records to view. when i logged in as language ENGLISH or German, in SE16 it is showing only in e