Skip to content

Commit

Permalink
Added @nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed Apr 26, 2024
1 parent c128135 commit 4b338ec
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023, Peter Abeles. All Rights Reserved.
* Copyright (c) 2024, Peter Abeles. All Rights Reserved.
*
* This file is part of BoofCV (http://boofcv.org).
*
Expand Down Expand Up @@ -30,6 +30,7 @@
import gnu.trove.map.TIntObjectMap;
import lombok.Getter;
import org.ddogleg.struct.DogArray_I32;
import org.jetbrains.annotations.Nullable;

import java.util.List;

Expand Down Expand Up @@ -68,7 +69,8 @@ public SparseSceneToDenseCloud( Class<T> imageType ) {
* @param lookUpImages Used to lookup images by name
* @return true if successful or false if it failed
*/
public boolean process( SceneStructureMetric scene, SceneObservations observations,
public boolean process( SceneStructureMetric scene,
@Nullable SceneObservations observations,
TIntObjectMap<String> viewIdx_to_ImageID,
LookUpImages lookUpImages ) {
// reset variables
Expand Down

0 comments on commit 4b338ec

Please sign in to comment.