sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    How to use this type of data

    Scheduled Pinned Locked Moved SketchUp Discussions
    sketchup
    32 Posts 5 Posters 3.1k Views 5 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • TIGT Offline
      TIG Moderator
      last edited by

      Not that I know of - the problem is working out which points make a facet.
      IF the points are in a file and they are always arranged in sets so that they define a triangular face - like in many OBJ files - then it's much easier to replicate those facets in a SKP...
      Unfortunately, the DXF data gets muddled once it's imported.
      Are there any other file formats like csv/tsv/txt you can get the points data in?
      These could be read into a SKP much more readily that a DXF... πŸ˜•

      TIG

      1 Reply Last reply Reply Quote 0
      • S Offline
        sepo
        last edited by

        I see....I need to check if there are any other file types available.

        1 Reply Last reply Reply Quote 0
        • S Offline
          sepo
          last edited by

          Hmmm... It does not appear to be available. I was wondering if maybe this is all driven for Autodesk Map

          1 Reply Last reply Reply Quote 0
          • N Offline
            notareal
            last edited by

            You could try meshlab http://www.meshlab.org/ http://meshlabstuff.blogspot.com/

            Welcome to try [Thea Render](http://www.thearender.com/), Thea support | [kerkythea.net](http://www.kerkythea.net/) -team member

            1 Reply Last reply Reply Quote 0
            • S Offline
              sepo
              last edited by

              Thanks Notareal but as far as I know Meshlab does not import .dxf/dwg.

              1 Reply Last reply Reply Quote 0
              • Chris FullmerC Offline
                Chris Fullmer
                last edited by

                What does it export? If it will take any other sort of standard file type - csv, obj, anything?, maybe we can write an exporter for it.

                Lately you've been tan, suspicious for the winter.
                All my Plugins I've written

                1 Reply Last reply Reply Quote 0
                • N Offline
                  notareal
                  last edited by

                  @sepo said:

                  Thanks Notareal but as far as I know Meshlab does not import .dxf/dwg.

                  You don't get the LiDAR data in any other format? That unfortunate as meshlab is indeed a very good program to handle point clouds.
                  Meshlab
                  import:PLY, STL, OFF, OBJ, 3DS, COLLADA, PTX, V3D, PTS, APTS, XYZ, GTS, TRI, ASC, X3D, X3DV, VRML, ALN
                  export:PLY, STL, OFF, OBJ, 3DS, COLLADA, VRML, DXF, GTS, U3D, IDTF, X3D
                  Point Clouds support. Now 3D files that are composed only by points are well supported in PLY and OBJ format.

                  Welcome to try [Thea Render](http://www.thearender.com/), Thea support | [kerkythea.net](http://www.kerkythea.net/) -team member

                  1 Reply Last reply Reply Quote 0
                  • Chris FullmerC Offline
                    Chris Fullmer
                    last edited by

                    Collada is essentialy an xml file - just plain text. It would be relatively easy to export a collada file with the point could data, if it was known what collada elements they need. SketchUp might even be able to do it natively with their collada exporter.

                    Lately you've been tan, suspicious for the winter.
                    All my Plugins I've written

                    1 Reply Last reply Reply Quote 0
                    • S Offline
                      sepo
                      last edited by

                      I supose I could export .dxf to collada and try it that way....

                      1 Reply Last reply Reply Quote 0
                      • S Offline
                        sepo
                        last edited by

                        @chris fullmer said:

                        What does it export? If it will take any other sort of standard file type - csv, obj, anything?, maybe we can write an exporter for it.

                        Chris
                        This is website I wanted to get Lidar data from .... http://www.stanfords.co.uk/Business-Mapping/BM/Products/LiDAR_BM-LIDAR.htm

                        1 Reply Last reply Reply Quote 0
                        • TIGT Offline
                          TIG Moderator
                          last edited by

                          Any text format file [even DXF] can be parsed and the points extracted in order.
                          If we know that that say every three of them make a triangular facet we can use that to add geometry.
                          It'd be a pain in the proverbial to parse a DXF file [it can be done! e.g. I extract 'text' in my dxf-text-importer tool] but other types like OBJ, CSV etc can be readily parsed and used... [DAE doesn't seem to support raw 'points', just facets]
                          πŸ˜•

                          TIG

                          1 Reply Last reply Reply Quote 0
                          • R Offline
                            Roger
                            last edited by

                            Sepo, I have not used it yet but I have installed the tgi3d plugin. I suspect it would handle the stereo pairs quite nicely. This is exactly what their PhotoScan product is supposed to do. Basically you take two or more photos of a surface or surfaces from widely separated areas. Then you mark corresponding points in the photo sets and the software uses these control points to reverse engineer the 3D shape of the surface.

                            I have also figured out a LIDAR like system of establishing surface control points on small stationary object that does not have strong features to compare photographically. I will post my experiments as time allows. Will be heading to Thailand for a month so it might be a while before I can test the system.

                            http://www.azcreative.com

                            1 Reply Last reply Reply Quote 0
                            • S Offline
                              sepo
                              last edited by

                              @roger said:

                              Sepo, I have not used it yet but I have installed the tgi3d plugin. I suspect it would handle the stereo pairs quite nicely. This is exactly what their PhotoScan product is supposed to do. Basically you take two or more photos of a surface or surfaces from widely separated areas. Then you mark corresponding points in the photo sets and the software uses these control points to reverse engineer the 3D shape of the surface.

                              I have also figured out a LIDAR like system of establishing surface control points on small stationary object that does not have strong features to compare photographically. I will post my experiments as time allows. Will be heading to Thailand for a month so it might be a while before I can test the system.

                              That would be quite interesting. Have you actually tried PhotoScan with tgi3d? I was wondering which other software people would use to create models from 2 photos shot with time delay.

                              1 Reply Last reply Reply Quote 0
                              • S Offline
                                sepo
                                last edited by

                                @tig said:

                                Any text format file [even DXF] can be parsed and the points extracted in order.
                                If we know that that say every three of them make a triangular facet we can use that to add geometry.
                                It'd be a pain in the proverbial to parse a DXF file [it can be done! e.g. I extract 'text' in my dxf-text-importer tool] but other types like OBJ, CSV etc can be readily parsed and used... [DAE doesn't seem to support raw 'points', just facets]
                                πŸ˜•

                                OK so no joy there as well. 😞

                                1 Reply Last reply Reply Quote 0
                                • R Offline
                                  Roger
                                  last edited by

                                  @unknownuser said:

                                  That would be quite interesting. Have you actually tried PhotoScan with tgi3d? I was wondering which other software people would use to create models from 2 photos shot with time delay.

                                  Will jump on the learning curve today. And time delay is not strictly necessary if two or more synched cameras are used. I plan to try multiple linked cameras at 4,000th of a second to freeze an athlete in motion.

                                  http://www.azcreative.com

                                  1 Reply Last reply Reply Quote 0
                                  • Chris FullmerC Offline
                                    Chris Fullmer
                                    last edited by

                                    Seriously Roger, I'm going to down to AZ and follow you around for a few days. You always have some cool camera project cooking in the background.

                                    EDIT:

                                    ok, I imported the example dxf and see the point cloud. Very interesting. What are you expecting differently than you achieved previously? The triangulated TIN looks pretty good to me.

                                    Lately you've been tan, suspicious for the winter.
                                    All my Plugins I've written

                                    1 Reply Last reply Reply Quote 0
                                    • S Offline
                                      sepo
                                      last edited by

                                      @chris fullmer said:

                                      EDIT:

                                      ok, I imported the example dxf and see the point cloud. Very interesting. What are you expecting differently than you achieved previously? The triangulated TIN looks pretty good to me.

                                      Well the TIN is unusable as the buildings (in my case) look like melting cakes.

                                      1 Reply Last reply Reply Quote 0
                                      • TIGT Offline
                                        TIG Moderator
                                        last edited by

                                        The sample TIN points cloud dxf imports easily into a SKP and triangulates into a mesh [even with 40k+ points and some patience!] BUT sepo's valid issue is that while it's fine for getting data on rolling land-surfaces, if there are buildings in it they will mesh into a melted-wedding-cake form [see his image] because 'vertical' surfaces won't always come out coplanar, as some triangles will spring from other corners of the adjacent ground surface's triangles...

                                        TIG

                                        1 Reply Last reply Reply Quote 0
                                        • R Offline
                                          Roger
                                          last edited by

                                          @chris fullmer said:

                                          Seriously Roger, I'm going to down to AZ and follow you around for a few days. You always have some cool camera project cooking in the background.

                                          That would be easy, but a bit boring as I am moving slower and slower

                                          http://www.azcreative.com

                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 2 / 2
                                          • First post
                                            Last post
                                          Buy SketchPlus
                                          Buy SUbD
                                          Buy WrapR
                                          Buy eBook
                                          Buy Modelur
                                          Buy Vertex Tools
                                          Buy SketchCuisine
                                          Buy FormFonts

                                          Advertisement