Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

filterNoise stage not working as it should #5

Open
vonnonn opened this issue Nov 26, 2023 · 0 comments
Open

filterNoise stage not working as it should #5

vonnonn opened this issue Nov 26, 2023 · 0 comments

Comments

@vonnonn
Copy link

vonnonn commented Nov 26, 2023

In notebook, 01_3DEP_Generate_DEM_User_AOI.ipynb, the filterNoise stage (lines 404-411) does not remove classes 7 and 18 using attached AOI (Yellow_creek(copy).geojson)

My workaround:

if filterNoise == True:
    
    filter_stage = {
        "type":"filters.range",
        "limits":"Classification[1:6],Classification[8:17],Classification[20:20]"
    }

    filter_interquartile_stage = {
        "type":"filters.iqr",
        "dimension":"Z",
        "k":3.5
    }
    
    pointcloud_pipeline['pipeline'].append(filter_stage)
    pointcloud_pipeline['pipeline'].append(filter_interquartile_stage)

I added the iqr filter to remove remaining noise that was not classified as either 7 or 18.

Yellow_creek (copy).zip

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant