Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1 1 4 #427

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading