Skip to content

Commit

Permalink
Merge branch '904-add-beefrost' into 'master'
Browse files Browse the repository at this point in the history
Add beefrost method

Closes #904

See merge request 3d/cars-park/cars!766
  • Loading branch information
dyoussef committed Jan 29, 2025
2 parents ead3395 + e9f777f commit 2055307
Show file tree
Hide file tree
Showing 22 changed files with 1,176 additions and 20 deletions.
1 change: 1 addition & 0 deletions cars/applications/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
from . import dense_matching # noqa: F401
from . import dsm_filling # noqa: F401
from . import grid_generation # noqa: F401
from . import ground_truth_reprojection # noqa: F401
from . import hole_detection # noqa: F401
from . import point_cloud_denoising # noqa: F401
from . import point_cloud_fusion # noqa: F401
Expand Down
30 changes: 30 additions & 0 deletions cars/applications/ground_truth_reprojection/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# !/usr/bin/env python
# coding: utf8
#
# Copyright (c) 2024 Centre National d'Etudes Spatiales (CNES).
#
# This file is part of CARS
# (see https://github.com/CNES/cars).
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
"""
CARS core epipolar matches ground truth generation module init file
"""
# flake8: noqa: F401, E501

from cars.applications.ground_truth_reprojection import (
ground_truth_reprojection,
)

from . import direct_localization
Loading

0 comments on commit 2055307

Please sign in to comment.