Skip to content

Commit

Permalink
Release 1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
lessthanoptimal committed May 14, 2024
1 parent 4b338ec commit 7f3690d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 10 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 @@ -124,7 +124,7 @@ public class SceneReconstruction {
@Option(name = "--DisparityMin", usage = "Minimum disparity. Points less than this are filtered. Can be used to remove noisy distant points.")
double disparityMin = 0.0;

@Option(name = "--DisparityRange", usage = "Number of disparity values considered. Can't exceed 255.")
@Option(name = "--DisparityRange", usage = "Number of disparity values considered.")
int disparityRange = 0;

@Option(name = "--Ordered", usage = "Images are assumed to be in sequential order and a feature tracker can be used")
Expand Down Expand Up @@ -214,9 +214,6 @@ public void process() {
System.exit(-1);
}

if (disparityRange > 255)
throw new RuntimeException("Disparity range can't be larger than 255. disparityRange=" + disparityRange);

// See if the user overrode the number of threads
if (numThreads > 0) {
BoofConcurrency.setMaxThreads(numThreads);
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ allprojects {
apply plugin: 'com.peterabeles.gversion'

group = 'org.boofcv'
version = '1.1.4-SNAPSHOT'
version = '1.1.4'

createVersionFile.enabled = false // run only once. enabled in types
}
Expand All @@ -27,7 +27,7 @@ project.ext.args4j_version = '2.33'
project.ext.junit_version = '5.10.0'
project.ext.errorprone_version = '2.21.1'
project.ext.nullaway_version = '0.10.11'
project.ext.auto64to32_version = '3.2.1'
project.ext.auto64to32_version = '3.2.2'
project.ext.snakeyaml_version = '2.2'
project.ext.jmh_version = '1.36'
project.ext.jetnull_version = '23.0.0'
Expand Down Expand Up @@ -131,7 +131,7 @@ subprojects {
}

dependencies {
api(group: 'org.georegression', name: 'georegression', version: '0.27.0') { exclude group: 'org.ddogleg' }
api(group: 'org.georegression', name: 'georegression', version: '0.27.1') { exclude group: 'org.ddogleg' }
api(group: 'org.ddogleg', name: 'ddogleg', version: '0.23.2')

api group: 'net.sf.trove4j', name: 'trove4j', version: project.trove4j_version
Expand Down
4 changes: 3 additions & 1 deletion change.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ Version Meaning: <compatible>.<feature>.<bug fix>
- Last digit always indicates a bug fix and other minor changes

---------------------
Date : 2024
Date : 2024/May/14
Version : 1.1.4

- TupleDesc
* Added isEquals()
- Added PackedTupleArray interface
- Updated: AssociatedIndex, NccFeature
- Bug Fix: RecognitionVocabularyTreeNister2006

---------------------------------------------
Date : 2024/Feb/24
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ configurations {

dependencies {
['boofcv-android', 'boofcv-core'].each {
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.3'
String a -> implementation group: 'org.boofcv', name: a, version: '1.1.4'
}

def fragment_version = "2.5.3"
Expand Down

0 comments on commit 7f3690d

Please sign in to comment.