Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
- Minor update
- Ability to add camera state to bundle adjustment
  • Loading branch information
lessthanoptimal committed Aug 21, 2023
1 parent 3b1aede commit ef55034
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 16 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ BoofCV is on [Maven Central](http://search.maven.org/) and can be easily added t
For Gradle projects:
```
dependencies {
api(group: 'org.boofcv', name: 'boofcv-core', version: '0.44')
api(group: 'org.boofcv', name: 'boofcv-core', version: '1.0.0')
}
```

Expand Down
2 changes: 1 addition & 1 deletion 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.0.0-SNAPSHOT'
version = '1.0.0'

createVersionFile.enabled = false // run only once. enabled in types
}
Expand Down
10 changes: 1 addition & 9 deletions change.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Version Meaning: <compatible>.<feature>.<bug fix>
- Last digit always indicates a bug fix and other minor changes

---------------------------------------------
Date : 2023/XX
Date : 2023/Aug/21
Version : 1.0.0

- Version
Expand All @@ -18,16 +18,8 @@ Version : 1.0.0
* Added a way to specify the camera state when a frame was captured
* Added a new camera model that adjusts the focal length based on zoom factor
- Calibration
* TODO support multiple calibration targets
* Tangental -> Tangential for consistency

- Image Processing
- TODO hough circle detector
- SLAM
- TODO traditional monocular SLAM
- Regression
- TODO Template matching

---------------------------------------------
Date : 2023/July/15
Version : 0.44
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.0.0-SNAPSHOT'
String a -> implementation group: 'org.boofcv', name: a, version: '1.0.0'
}

def fragment_version = "2.5.3"
Expand Down
2 changes: 1 addition & 1 deletion integration/boofcv-android/examples/video/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ configurations {

dependencies {
['boofcv-android', 'boofcv-core'].each {
String a -> api group: 'org.boofcv', name: a, version: '1.0.0-SNAPSHOT' }
String a -> api group: 'org.boofcv', name: a, version: '1.0.0' }

annotationProcessor 'org.projectlombok:lombok:1.18.16'

Expand Down
5 changes: 2 additions & 3 deletions misc/planning.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
- Calibration
* TODO support multiple calibration targets
- Image Processing
- TODO hough circle detector
- SLAM
- TODO traditional monocular SLAM
- Regression
- TODO Template matching

- Calibration
- TODO Visualize Multi Camera Calibration
- Scene Reconstruction
- TODO Robust optimization
- TODO 3D reconstruction to 3D mesh
Expand Down

0 comments on commit ef55034

Please sign in to comment.