scalismo-faces


License

License

GroupId

GroupId

ch.unibas.cs.gravis
ArtifactId

ArtifactId

scalismo-faces_2.12
Last Version

Last Version

0.90.0
Release Date

Release Date

Type

Type

jar
Description

Description

scalismo-faces
scalismo-faces
Project URL

Project URL

https://github.com/unibas-gravis/scalismo-faces
Project Organization

Project Organization

ch.unibas.cs.gravis
Source Code Management

Source Code Management

https://github.com/unibas-gravis/scalismo-faces

Download scalismo-faces_2.12

How to add to project

<!-- https://jarcasting.com/artifacts/ch.unibas.cs.gravis/scalismo-faces_2.12/ -->
<dependency>
    <groupId>ch.unibas.cs.gravis</groupId>
    <artifactId>scalismo-faces_2.12</artifactId>
    <version>0.90.0</version>
</dependency>
// https://jarcasting.com/artifacts/ch.unibas.cs.gravis/scalismo-faces_2.12/
implementation 'ch.unibas.cs.gravis:scalismo-faces_2.12:0.90.0'
// https://jarcasting.com/artifacts/ch.unibas.cs.gravis/scalismo-faces_2.12/
implementation ("ch.unibas.cs.gravis:scalismo-faces_2.12:0.90.0")
'ch.unibas.cs.gravis:scalismo-faces_2.12:jar:0.90.0'
<dependency org="ch.unibas.cs.gravis" name="scalismo-faces_2.12" rev="0.90.0">
  <artifact name="scalismo-faces_2.12" type="jar" />
</dependency>
@Grapes(
@Grab(group='ch.unibas.cs.gravis', module='scalismo-faces_2.12', version='0.90.0')
)
libraryDependencies += "ch.unibas.cs.gravis" % "scalismo-faces_2.12" % "0.90.0"
[ch.unibas.cs.gravis/scalismo-faces_2.12 "0.90.0"]

Dependencies

compile (3)

Group / Artifact Type Version
org.scala-lang : scala-library jar 2.12.11
ch.unibas.cs.gravis : scalismo_2.12 jar 0.90.0
ch.unibas.cs.gravis : scalismo-native-all jar 4.0.1

test (1)

Group / Artifact Type Version
org.scalatest : scalatest_2.12 jar 3.0.8

Project Modules

There are no modules declared in this project.

scalismo-faces

Build Status

Download

This is a framework for shape modeling and model-based image analysis in scala. It is based on the scalismo library for shape modelling. It originates from the Graphics and Vision research group at the University of Basel, Switzerland.

The library contains tools for image processing, rendering and handling of the Morphable Model. A tutorial on how to use this software and about the concepts of Analysis-by-Synthesis face image analysis is available from the University of Basel under http://gravis.dmi.unibas.ch/PMM/.

Usage

sbt

Add the dependency to your build.sbt:

libraryDependencies += "ch.unibas.cs.gravis" %% "scalismo-faces" % "0.90.0"

Getting Started

  • The following code creates a checkerboard image and save it to disk:
import scalismo.color.RGB
import scalismo.faces.image.PixelImage
import scalismo.faces.io.PixelImageIO
import java.io.File

object ChessExample extends App {
  val checkerboard = PixelImage(128, 128, {(x, y) => if ((x+y)%2 == 0) RGB.White else RGB.Black})
  PixelImageIO.write(checkerboard, new File("checkerboard.png")).get
}

To execute it place the code in a file src/main/scala/ChessExample.scala and run sbt run from your project directory where you have the build.sbt file with at least the lines described under the former point sbt.

Documentation

There is also a scalismo-faces google group for general questions and discussion.

Maintainers

The project is developed and maintained by the Graphics and Vision Research group, University of Basel in collaboration with Shapemeans GmbH. The current maintainers of the project (people who can merge pull requests) are:

Contribution

Contribution is welcome:

  • You can report bugs and issues using the issue tracker on Github
  • You can submit small pull requests to contribute:
    • Open an issue and discuss what you would like to add
    • Submit work as a small pull request, suitable for quick review
  • If you would like to get involved in development, contact us.

License

Apache License, Version 2.0, details see LICENSE

Copyright 2016, University of Basel, Graphics and Vision Research

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
ch.unibas.cs.gravis

Graphics and Vision Research Group University of Basel

Versions

Version
0.90.0
0.10.2
0.5.0