Convert a Cloud of points to surface in IGES format (Reverce engineering)

Hi,
     I have aquired some 3 dimentional points into an excel spread sheet. I need to create a surface in IGES format using these points. Is there a ready made Vi that can do this?
Thanks,
Regards,
Shapoor

See this thread for a way to create the surface inside labview using mathscript.
http://forums.ni.com/ni/board/message?board.id=170&thread.id=356342&view=by_date_ascending&page=5
I have no idea how to group the surface output arrays (3 or 4 points per surface) or the IGES format.

Similar Messages

  • What's the arrow in the cloud that points upward or downward?

    What's the arrow in the cloud that points upward or downward?

    So if the down arrow means it's available to download, what do I do to actually download it?   I'm trying to download two apps and have same problem on both.

  • Cloud of Points Tree /Nearest Neighbor

    Hi guys;
    I'm using a binary tree to construct a tree of two dimensional points .here is how i construct the tree :
    the tree is constructed by successive subdivision of the Plan by semi-Lines accross a given point.
    the first subdivision is done by say a horizantal line across a given point.the plan is then split into two regions : the upper and lower half plans. the points in the upper plan will be in the right subtree and those in the lower plan will go into the left subtree.
    in the next step the plan will be subdiveded by a VERTICAL semi-line at this time : the points at the left of this line will be placed in the left subtree and those on the right will be placed to right subtree.
    Now i managed to write an insert() method for this :
    static Tree insert(Point p, Tree a, boolean vertical)
         if (a == null)
         return new Tree(null, p, null);
         boolean estAGauche =
         (vertical) ? (p.x < a.p.x) : (p.y < a.p.y);
         if (estAGauche)
         Tree g = insert(p, a.filsG, !vertical);
         return new Tree(g, a.p, a.filsD);
         else
         Tree d = insert(p, a.filsD, !vertical);
         return new Tree(a.filsG, a.p, d);
         static Tree insert(Point p, Tree a)
         return insert(p, a, false);
         }Now i want to tackle another problem : given the tree is filled with a cloud of points.
    if i pick a given point in the cloud ,i want to find the nearest neighbor of this point using the tree construct i described above.
    is this possible ? How can I implement it ?
    Many thanks for helping !

    this is because i will be dealing with a verylarge
    number of points so efficiency here is definitelya
    crucial issue...what do you think josiah ?Well, I've used that little algorithm for a global
    map with, say, 1e6 known points
    and the response was always almost intantaneous. It
    depends on the distribution
    of your known points, i.e. you can easily draw
    pathetic situations on a piece of
    paper but on average the nearest point is found
    withing a few searches (after
    finding those two lines using an O(log(n)) binary
    search ...
    Two dimensional locality doesn't help you much when
    you're using quad-trees;
    as has been said before in this thread: two nearest
    points may be miles apart
    in the tree.
    What does help (altough not much) is, after sorting
    the points on increasing Y
    values, do a minor sort using Gray-codes on the X
    coordinate. But that's for a
    later discussion ;-)
    kind regards,
    Jos
    Well, I've used that little algorithm for a global
    map with, say, 1e6 known points
    and the response was always almost intantaneous. It
    depends on the distribution
    of your known points, i.e. you can easily draw
    pathetic situations on a piece of
    paper but on average the nearest point is found
    withing a few searches (after
    finding those two lines using an O(log(n)) binary
    search ...
    What you say is very encouraging so i will try your little algorithm for sure.
    any way At this first stage of my application i'm not demanding some extra ordinary work to be acheived , and this one would be surely very sufficient..
    Two dimensional locality doesn't help you much when
    you're using quad-trees;
    as has been said before in this thread: two nearest
    points may be miles apart
    in the tree.
    you right !
    What does help (altough not much) is, after sorting
    the points on increasing Y
    values, do a minor sort using Gray-codes on the X
    coordinate. But that's for a
    later discussion ;-)
    something interesting i'll be patiently waiting for ;)
    kind regards,
    JosMany thanks ,

  • Converting large amounts of points - 76 million lat/lon's to spatial object...

    Hello, I need help.
    Platform - Oracle 11g 64bit on Windows Enterprise server 2008 64bit.  64 GB of ram with 2 CPUs totalling 24 cores
    Does any one know of a fast way to convert large amounts of points to a spatial object?  I need to convert 76 million lat/lon's to ESRI st_geometry or Oracle sdo_geometry.
    Currently, I have setup code using pipelined parallel functions and multiple jobs that run concurrently.  It still takes over 2.5 hours to process all of the points.
    Any pointers would be GREATLY appreciated!
    Thanks
    John

    Hi,
    Where is the lat/lon data at the moment?  In an external text file or in an existing database table as number attributes?
    If they're in an external text file, then I'd probably use an external table to load them in as quickly as possible.
    If they're in an existing database table, then you can just update the sdo_geometry column using:
    update <table> set <geometry column> = sdo_geometry(2001, <your srid>, sdo_point_type(<lon column>, <lat column>, null), null, null)
    where <lon column> is not null
    and <lat column> is not null;
    That should run very quick for you.  If you want to avoid the overhead of creating redo, you could use "create table .... as select...".  This example of creating 1,000,000 points runs in 9 seconds for me.
    create table sample_points (geometry) nologging as
      (select sdo_geometry(2001, null,
      sdo_point_type(
      trunc(100000 * dbms_random.value()),
      trunc(100000 * dbms_random.value()),
      null), null, null)
      from dual connect by level <= 1000000);
    I have setup code using pipelined parallel functions and multiple jobs that run concurrently
    You shouldn't need to use pl/sql for this task.  If you find you do, then provide some sample code and we'll take a look.
    Regards,
    John O'Toole

  • IPhone SDK: How to convert Pixel values into Point values

    UIScrollView has a property called contentSize. This takes values in points. How do i convert Pixel values into Point Vales?
    -TRS

    As far as I can tell, they're the same - I know they are in Photoshop at least. My 57x57 point Tab Bar icon is also 57x57 pixels.
    Hope that helps

  • How to convert the output of Applescript which is in object format to text or string format??

    Hi All,
    I want to convert the output of Applescript which is in object format to string or text format, am running Applescript with Java, I need to display the output of applescript in Eclipse Java Console, since its object format the output is not properly displayed..
    Pls suggest.. I used the below code
    repeat with i in allContents
                if class of i is button then set the end of allStaticText to contents of i
            end repeat
    Applscript ouptput
    {button 1 of window "Player Installer" of application process "Install  Player" of application "System Events", button 2 of window "Player Installer" of application process "Install  Player" of application "System Events", button 3 of window "Player Installer" of application process "Install  Player" of application "System Events", button "Finish" of UI element 1 of scroll area 1 of window "Player Installer" of application process "Install  Player" of application "System Events"}
    Java output
    <NSAppleEventDescriptor: 'obj '{ 'form':'indx', 'want':'butT', 'seld':1, 'from':'obj '{ 'form':'name', 'want':'cwin', 'seld':'utxt'(" Player Installer"), 'from':'obj '{ 'form':'name', 'want':'pcap', 'seld':'utxt'("Install  Player"), 'from':'null'() } } }>

    Here's an improved version of the previous script, where the handler now returns "button 2 of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\"" instead of "button \"2\" of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\"":
    tell application "System Events"
        get button 2 of window 1 of process "TextEdit"
        my objectToText(result) --> "button 2 of window \"Untitled\" of application process \"TextEdit\" of application \"System Events\""
    end tell
    on objectToText(UI_element)
        set theText to ""
        tell application "System Events"
            repeat
                if exists attribute "AXParent" of UI_element then
                    set theParent to value of attribute "AXParent" of UI_element
                    set theClass to class of UI_element
                    if name of UI_element exists then
                        set theName to name of UI_element
                        set theText to theText & (theClass as text) & " \"" & theName & "\" of "
                    else
                        set k to 0
                        get UI elements of theParent whose class is theClass
                        repeat with thisItem in result
                            set k to k + 1
                            if contents of thisItem is UI_element then exit repeat
                        end repeat
                        set theIndex to k
                        set theText to theText & (theClass as text) & " " & theIndex & " of "
                    end if
                    set UI_element to theParent
                else
                    set theClass to class of UI_element
                    set theName to name of UI_element
                    set theText to theText & (theClass as text) & " \"" & theName & "\" of application \"System Events\""
                    exit repeat
                end if
            end repeat
        end tell
        return theText
    end objectToText
    Message was edited by: Pierre L.

  • Can Adobe Distiller be used for converting all pro/e (3D -2D)  files to pdf format?

    Can Adobe Distiller be used for converting all pro/e (3D -2D)  files to pdf format?

    Acrobat Distiller Server converts Postscript to PDF.

  • How to convert JAVA.SQL.DATE date in YYYY/MM/DD format into DD/MM/YYYY

    i am using informix database which accepts date value in the form of DATE format......
    the other part of my application takes date from the field in DD/MM/YYYY format...so i have to convert my java.sql.date in YYYY/MM/DD fromat into DD/MM/YYYY fromat of same type before inserting into db......
    but using parse method in SimpleDateFormat class can get the result only in java.util.date format...
    and also using format method can result only in string conversion........

    816399 wrote:
    i am using informix database which accepts date value in the form of DATE format......Huh?
    Maybe you mean Informix (fronted by JDBC) expects date values as java.sql.Date objects?
    the other part of my application takes date from the field in DD/MM/YYYY format...
    so i have to convert my java.sql.date in YYYY/MM/DD format into DD/MM/YYYY format of same type before inserting into db......I am not sure why you are talking about formats here.
    There is no formatting inherent in a java.util.Date object
    nor in a java.sql.Date object.
    but using parse method in SimpleDateFormat class can get the result only in java.util.date format...
    and also using format method can result only in string conversion........You can easily create a java.sql.Date object from a java.util.Date object.
    String s = "31/12/2010";
    java.util.Date ud = new java.text.SimpleDateFormat("dd/MM/yyyy").parse(s);
    java.sql.Date sd = new java.sql.Date(ud.getTime());
    ud = sd; // java.sql.Date extends java.util.Date so no conversion is needed

  • Convert the Database records to a standard XML file format?

    Hai,
    i want to convert the Database records to a standard XML file
    format which includes the schema name, table name, field name
    and field value. i am using Oracle 8.1.7. Is there any option
    please help me
    Thanks in advance.

    You could put the files somewhere and I can export them as QuickTime. Or you could find anyone you know who has Director. Or do the 30 day trial download
    Another approach would be to play the DCR in a browser window, and do a screen recording. But that’s unlikely to give the perfect frame rate that you would get by exporting from Director.

  • Converting Smartform spool to PDF results in loss of formatting

    A smart form contains texts which is printed in bold.
    This is clearly visible in both the preveiw and the prionout.
    When we convert the output of a smartform into a PDF form the bold text is converted into a normal text for that font.
    We are using a custom ZARIAL font in the smartstyle, and cannot tell if it is this Z font which the PDF conversion cannot support or if there is some setting which needs to be tweaked.
    Kindly advice.

    Hi
    ZARIAL font which you have created in the smartstyle and used in the smartform is no supporting while converting from OTF TO PDF.
    [Output in PDF Format|http://help.sap.com/saphelp_nw70/helpdata/en/27/67443cc0063415e10000000a11405a/content.htm]
    Regards,
    Sravanthi

  • In fact it's about mac:excel, how convert in a cell a number written in text format into a value?

    in fact it's about mac:excel8 or 11 in OSX10.7.4,
    how convert in a cell a number written in text format into its value?
    cheers francois

    Hi francois,
    If I copyone of them and do a past special/value, it does not work.
    Try just Paste instead of Paste Special > Value
    I know your question is about Excel, but this works in Numbers:
    Copy 1 234 567 (with spaces) and Paste (not Paste Special) into a Cell in a Numbers Table. The result is 1234567 and it behaves as a number. A formula will consider it to be a number:
    You asked Wayne: what do you mean by "to reference a cell" ??
    The reference is from Cell A2 to Cell A1 through a formula, such as: =A1+1
    Regards,
    Ian.

  • Is there a way to convert REASON's .sxt files to LOGIC's .exs format???

    Is there a way to convert REASON's .sxt files to LOGIC's .exs format???
    From the NNXT sampler file format to the EXS24 format???

    I have done it manually, and it takes a long time just for 1 patch.
    Just the sample editing and naming takes hours!
    Autosampler automates this process.
    You can define how many velocity levels you need.
    If a midi CC changes the sound in an interesting way, you can have Autosampler send the controller in increments and sample that.
    At the end of it, you end up with a finished EXS instrument.

  • Converting the script and smartforms to OTF and RDI format.

    How to convert the script and smartforms to OTF and RDI format. Please suggest all possible ways.

    Please don't cross-post or duplicate-post.
    It increases the chances that both threads are deleted faster than what it increases the chances of getting "double-good" answers...
    I deleted the other thread.
    Thanks,
    Julius

  • When converting word to PDF and reducing the size, the formatting changes how can i keep the format but reduce the size?

    When converting word to PDF and reducing the size, the formatting changes how can i keep the format but reduce the size?

    The original file is 32 MB:
    15 MB is images
    15 MB is Content stream
    2 MB is everything else
    After the PDF/A-1B save as:
    The file is 182 MB
    Almost 100% is Images
    It is an architecture portfolio with many complex images.  Is there a setting when I change to PDF/A that can limit the growth of the image files?

  • Convert full telephone No. into country code, phone, extension format...

    Is there way of converting a full telephone number down into a country codedialling codenumber+extension. For example, a number like +4478631234678 is shown in Account/contact screens in CRM in this very format, but when I extract the telephone number using the FM 'CRM_BUPA_CONTACT_ADDRESS' I get the telpehone number in the format of  4478631234678 instead of   country codedialling codenumberextensionn format.
    When I update the Contact details using FM 'BAPI_BUPA_ADDRESS_CHANGE' I ideally need to update multiple fields rather than one number field.
    It would therefore be handy to find some routine which converts a number like 4478631234678 into  country codedialling codenumberextension format.
    Jason

    Hi Jason,
    Go to SE80 -> Function Group and choose function Groups as PHOC.
    I think FM: CANONICAL_NO_BUILD should help. Just read the documentation in code. You can massage the data before passing to this FM. There are other FM's in this function group you might look for help.
    Hope it helps.
    Regards
    Apoorva

Maybe you are looking for

  • Relational operator LIKE is not supported.

    Hi friends, I am trying to write a routine in bw.  I am using LIKE pattern. But it is giving the below error. "E:Relational operator "LIKE" is not supported."

  • My iMac sometimes will not switch on.

    I have a late 2012 27" imac. Its always plugged in to an APC500CS UPS but isnt always left swithced on. I frequently have to reset the SMC as the MAC won't switch on, is this a common problem or is there something I can do to prevent this from happen

  • Question about h.264 output in PE7

    I'm a bit confused about h.264, in article http://gizmodo.com/5093670/giz-explains-every-video-format-you-need-to-know it states: "MPEG-4 Part 10, the other part, was actually co-devopled by MPEG and the ITU-T, so it's also known-in fact, more common

  • CS4 - Does one need to Premiere render before Encore transcode?

    Production Suite CS4 Question: Does one need to Premiere render before Encore transcode? I have an Encore asset which is dynamically linked to a Premiere sequence. Do I need to render the sequence in Premiere before transcoding it in Encore i.e. is P

  • Solution advice

    Hello, I will try to explain the situation: Hardware overview: Server1 2008 Role: Hyper-V Server and Back-up Server Physical Server2 SBS 2008 Role: AD, DNS, DHCP, Exchange, Virtual Server3 2008 Role: Remote Desktop Server Virtual The server is perfor