https://github.com/hohonuuli/assignments-openimaj
Optional Excercises from Coursera's Image and Video Processing course using Openimaj and Scala
https://github.com/hohonuuli/assignments-openimaj
Last synced: 2 months ago
JSON representation
Optional Excercises from Coursera's Image and Video Processing course using Openimaj and Scala
- Host: GitHub
- URL: https://github.com/hohonuuli/assignments-openimaj
- Owner: hohonuuli
- Created: 2015-02-01T17:24:38.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-26T17:17:37.000Z (about 10 years ago)
- Last Synced: 2025-02-04T21:45:57.294Z (4 months ago)
- Language: Scala
- Size: 1.25 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# assignments-openimaj
This project is built using [SBT](http://www.scala-sbt.org/)
## Useful [SBT commands](http://www.scala-sbt.org/release/docs/Command-Line-Reference.html) for this project
- __checkVersions__: Show dependency updates
- __clean__
- __cleanall__: Does __clean__ and __clean-files__
- __compile__ or __~compile__ (continuous)
- __console__: Opens a scala console that includes the projects dependencies and code on the classpath
- __dependency-graph__: Shows an ASCII dependency graph
- __dependencyUpdates__: Show dependency updates
- __doc__: Generate Scaladoc into target/api
- __export fullClasspath__: Generate the classpath needed to run the project
- __install__
- __ivy-report__: build a report of dependencies using ivy in XML (viewable in a browser)
- __offline__: Use SBT offline
- __pack__: Builds a standalone distribution of this project under __target/pack__
- __package__: Creates the main artifact (e.g. a jar) under __target__
- __publish-local__ or __~publish-local__ (continous): Publish to the local ivy repo
- __publishM2__: Publish to the local maven repo
- __reload__: Reloads the build. Useful if you edit build.sbt.
- __show ivy-report__: Show the location of the dependency report
- __show update__: Show dependencies and indicate which were evicted
- __tasks -V__: Shows all available tasks/commands
- __test__ or __~test__ (continuous)
- __update-classifiers__: Download sources and javadoc for all dependencies
- __version-report__: Shows a flat listing of all dependencies in this project, including transitive ones.## To run main class using SBT to launch it
\`sbt 'run-main org.mbari.foo.Main' \`## To run a single test
\`sbt 'test-only org.mbari.foo.ExampleSpec' \`