Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into AUTO-2217_revise_tf_t…
Browse files Browse the repository at this point in the history
…ree_clouds
  • Loading branch information
nachovizzo committed Mar 1, 2024
2 parents 5801609 + b217173 commit d25c0cb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @nachovizzo @benemer @tizianoGuadagnino
3 changes: 2 additions & 1 deletion python/kiss_icp/config/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@
from pathlib import Path
from typing import Any, Dict, Optional

from pydantic_settings import BaseSettings
from pydantic_settings import BaseSettings, SettingsConfigDict

from kiss_icp.config.config import AdaptiveThresholdConfig, DataConfig, MappingConfig


class KISSConfig(BaseSettings):
model_config = SettingsConfigDict(env_prefix="kiss_icp_")
out_dir: str = "results"
data: DataConfig = DataConfig()
mapping: MappingConfig = MappingConfig()
Expand Down
4 changes: 4 additions & 0 deletions python/kiss_icp/tools/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,10 @@ def name_callback(value: str):
# Use a more specific dataloader: {", ".join(_available_dl_help)}
$ kiss_icp_pipeline --dataloader kitti --sequence 07 --visualize <path-to-kitti-root>:open_file_folder:
# To change single config parameters on-the-fly, you can export them beforehand:
$ export kiss_icp_out_dir='<path-to-logs>:open_file_folder:'
$ export kiss_icp_data='{{"max_range": 50}}'
"""


Expand Down

0 comments on commit d25c0cb

Please sign in to comment.