All Downloads are FREE. Search and download functionalities are using the official Maven repository.

boofcv.abst.sfm.d3.DepthVisualOdometry Maven / Gradle / Ivy

Go to download

BoofCV is an open source Java library for real-time computer vision and robotics applications.

The newest version!
/*
 * Copyright (c) 2023, Peter Abeles. All Rights Reserved.
 *
 * This file is part of BoofCV (http://boofcv.org).
 *
 * 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.
 */

package boofcv.abst.sfm.d3;

import boofcv.struct.calib.CameraPinholeBrown;
import boofcv.struct.distort.Point2Transform2_F32;
import boofcv.struct.image.ImageBase;
import boofcv.struct.image.ImageGray;
import boofcv.struct.image.ImageType;
import georegression.struct.se.Se3_F64;

/**
 * 

* Visual odometry that estimate the camera's ego-motion in Euclidean space using a camera image and * a depth image. Camera motion is estimated relative to the first frame in the left camera's point of view. *

* *

* The following is a set of assumptions and behaviors that all implementations of this interface must follow: *

    *
  • Visual and depth images must be captured simultaneously
  • *
  • Cameras must have a global shutter
  • *
  • Calibration parameters can be changed at any time, but must be set at least once before processing an image.
  • *
  • If process returns false then the motion could not be estimated and isFault() should be checked
  • *
  • If isFault() is true then the reset() should be called since it can't estimate motion any more
  • *
  • reset() puts back into its initial state
  • *
*

* *

* Optional interfaces are provided for accessing internal features. *

    *
  • {@link boofcv.abst.sfm.AccessPointTracks3D}
  • *
*

* * @param Visual camera sensor * @param Depth camera sensor */ // DEVELOPMENT NOTE: This right now assumes that the depth image contains depth. A transform could be added which // would convert it from the internal value into depth. This would allow a sparse depth calculation // right now the depth of the whole image must be computed. public interface DepthVisualOdometry, Depth extends ImageGray> extends VisualOdometry { /** * Specifies the intrinsic parameters for the visual camera and the transform from visual to depth pixels. * * @param paramVisual Intrinsic parameters for visual camera * @param visToDepth Transform from visual camera pixels into depth camera pixels */ void setCalibration( CameraPinholeBrown paramVisual, Point2Transform2_F32 visToDepth ); /** * Process the new image and update the motion estimate. The return value must be checked * to see if the estimate was actually updated. If false is returned then {@link #isFault()} * also needs to be checked to see if the pose estimate has been reset. * * @param visual Image from visual camera * @param depth Image from depth sensor * @return true if the motion estimate has been updated and false if not */ boolean process( Vis visual, Depth depth ); /** * Type of visual images it can process. * * @return The image type */ ImageType getVisualType(); /** * Type of depth images it can process. * * @return The image type */ Class getDepthType(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy