- Notifications
You must be signed in to change notification settings - Fork270
Fast computer vision library for SFM, calibration, fiducials, tracking, image processing, and more.
lessthanoptimal/BoofCV
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
BoofCV is an open source real-time computer vision library written entirely in Java and released under the Apache License 2.0. Functionality includes low-level image processing, camera calibration, feature detection/tracking, structure-from-motion, classification, and recognition.
The bleeding edge source code can be obtained by cloning the git repository.
git clone -b SNAPSHOT --recursive https://github.com/lessthanoptimal/BoofCV.git boofcvIs the data directory empty? That's because you didn't follow instructions and skipped --recursive. Fix that by doing the following.
cd boofcvgit submodule update --init --recursiveTo run BoofCV you need Java 11 or newer and any free version will work, e.g.Zulu. To build BoofCV, just let the Gradle script handle everything. It will automatically download what it needs and ignore your local JDK if it's not compatible.
cd boofcvgit clean -fd main# Removes stale autogenerated code./gradlew autogenerate./gradlew examplesJarjava -jar examples/examples.jar./gradlew demonstrationsJarjava -jar demonstrations/demonstrations.jar
All the code for examples and demonstrations is in boofcv/examples and boofcv/demonstrations. Example code is intended easy to understand, so look there first.
ClickHERE for instruction on building and running Applications.There you can calibrate cameras, create QR codes, batch scan for QR codes, batch downsample images, ... etc.
BoofCV is onMaven Central and can be easily added to your favorite build systems; Maven, Gradle, ... etc. It's divided up into many modules, but most people will just need 'boofcv-core'. Additional modules are listed below for GUI and IO components. To include it in a Gradle project add the following to your dependencies:
For Gradle projects:
dependencies { api(group: 'org.boofcv', name: 'boofcv-core', version: '1.2.4')}Here are a list of the most commonly used modules and what they are for:
| Name | Description |
|---|---|
| boofcv-core | All the core libraries without any of the integration modules listed below |
| boofcv-android | Useful functions for working inside of Android devices. |
| boofcv-ffmpeg | javacpp-presets their ffmpeg wrapper is used for reading video files. |
| boofcv-javacv | JavaCV is a wrapper around OpenCV mainly for file IO. |
| boofcv-jcodec | JCodec is a pure Java video reader/writer. |
| boofcv-kotlin | Kotlin extensions which take advantage of Kotlin's unique features. |
| boofcv-pdf | Needed to render fiduals as PDF documents |
| boofcv-swing | Visualization using Java Swing. Required for examples and demonstrations. |
| boofcv-WebcamCapture | A few functions that makeWebcamCapture even easier to use. |
| Directory | Description |
|---|---|
| applications/ | Helpful applications |
| data/ | Directory containing optional data used by applets and examples. |
| demonstrations/ | Demonstration code which typically lets experiment by changing parameters in real-time |
| examples/ | Set of example code designed to be easy to read and understand. |
| integration/ | Contains code which allows BoofCV to be easily integrated with 3rd party libraries. Primary for video input/output. |
| main/ | Contains the source code for BoofCV |
Building and installing BoofCV into your local Maven repository is easy[1] using thegradlew script:
cd boofcvgit clean -fd main# Removes stale autogenerated code./gradlew autogenerate# Creates auto generated files./gradlew publishToMavenLocal# Installs it into the local maven repository
If you wish to have jars instead, the following commands are provided.
./gradlew oneJarBin# Builds a single jar with all of BoofCV in it./gradlew createLibraryDirectory# Puts all jars and dependencies into boofcv/library./gradlew alljavadoc# Combines all JavaDoc from all sub-projects into a single set
[1] A couple of the integration submodules have a custom build process that can't be performed by Gradle. The script is smart enough to ignore modules and tell you that it is doing so if you haven't configured it yet.
IntelliJ is the recommended IDE for use with BoofCV. With IntelliJ you can directly import the Gradle project.
- File->Project From Existing Sources
- Select your local "boofcv" directory
- Confirm that you wish to import the Gradle project
Similar to IntelliJ, you can now import Gradle projects like BoofCV using the Buildship tooling.Instructions
Core BoofCV modules depends on the following libraries
The following is required for unit tests
Code from the following libraries has been integrated into BoofCV
- General Purpose FFT by Takuya Ooura
- Java port by Piotr Wendykier with modifications by Peter Abeles to recycle memory.
The optional sub-projects in integration also have several dependencies. See those sub-projects for a list of their dependencies.
For questions or comments about BoofCV please use the message board. Only post a bug report after doing some due diligence to make sure it is really a bug and that it has not already been reported.
About
Fast computer vision library for SFM, calibration, fiducials, tracking, image processing, and more.
Topics
Resources
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.