编程语言
首页 > 编程语言> > java解析las/laz(点云数据)

java解析las/laz(点云数据)

作者:互联网

参考地址:http://www.itfsw.com/blog/category/java/
参考地址提供的github地址:https://github.com/jsimomaa/LASlibJNI

依赖:
<dependency>
     <groupId>fakepath</groupId>
     <artifactId>laslibjni</artifactId>
     <version>0.0.1</version>
</dependency>

import org.lastools.LASHeader;
import org.lastools.LASPoint;
import org.lastools.LASReader;
import org.lastools.LASlibJNI;

public static void main(String [] args) {
    // Initialize the native library
    LASlibJNI.initialize();
    
    // Get an instance of LASReader for provided file
    try (LASReader reader = new LASReader("src/test/resources/1.0_0.las")) {
    
        // Get the header information of the file
        LASHeader header = reader.getHeader();
        
        // Check that the file is supported and in tact
        if (header.check()) {
            // Ok, read points
            while (reader.readPoint()) {
                LASPoint point = reader.getPoint();
                double x = point.getX();
                double y = point.getY();
                double z = point.getZ();
                System.out.println("x= "+x);
                System.out.println("y= "+y);
                System.out.println("z= "+z);
                System.out.println(x+y+z);
                System.out.println();
            }
        }
    }
}

标签:java,lastools,point,LASReader,System,println,laz,点云,out
来源: https://blog.csdn.net/MYNAMEL/article/details/120986280