• Stars
    star
    114
  • Rank 296,898 (Top 7 %)
  • Language
    Scala
  • License
    Apache License 2.0
  • Created over 7 years ago
  • Updated 11 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Scalable Image Analysis and Shape Modelling: Module to work with 2d images, with a focus on face images

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.

More Repositories

1

scalismo

Scalable Image Analysis and Shape Modelling
Scala
238
star
2

parametric-face-image-generator

Generate fully parametric face images from the Basel Face Model 2017
Scala
232
star
3

basel-face-pipeline

Scala
222
star
4

Occlusion-Robust-MoFA

Python
201
star
5

basel-face-model-viewer

Simple Viewer for the Basel Face Model 2017
Scala
161
star
6

icp-proposal

Source code to the paper "A Closest Point Proposal for MCMC-based Probabilistic Surface Registration"
Scala
31
star
7

scalismo-ui

Visualization for Statistical Shape Models and Medical Images based on Scalismo.
Scala
22
star
8

GiNGR

Generalized iterative Non-Rigid Point Cloud and Surface Registration using Gaussian Process Regression
Scala
15
star
9

landmarks-clicker

A landmark clicker for 2d images. The clicked landmarks are in the format of scalismo-faces
Scala
11
star
10

probabilistic-fitting-ASM

Project to the publication "Probabilistic Fitting of Active Shape Models"
Scala
7
star
11

VSDClient

a library providing a REST client to the Virtual Skeleton Database (https://www.virtualskeleton.ch/)
Scala
5
star
12

scalismo-asm

Active Shape Model implementation in Scalismo
Scala
2
star
13

scalismo-vtk

This library enables Conversion between Scalismo and VTK and adds VTK based IO capabilities
Scala
2
star
14

pmm2018-faces

Summerschool on probabilistic morphable models. Template for face projects
Scala
2
star
15

sequential-gpmm

Code for the paper "Sequential Gaussian Process Regression for Simultaneous Pathology Detection and Shape Reconstruction"
Scala
2
star
16

scalismo-microsite

microsite for the scalismo project
Scala
2
star
17

scalismo-hdf5-json

Library to read and write files in hdf5-json format
Scala
1
star
18

posterior-shape-models-revisited

Source code and experiments accompanying the paper posterior-shape-models-revisited
Scala
1
star
19

bnn-informed-face-sampler

This is the repository to the paper "Informed MCMC with Bayesian Neural Networks for Facial Image Analysis".
1
star
20

ssia-march

Scalismo tutorial for workshop on Statistical and Shape-Based Image Analysis With Applications in Medicine
Scala
1
star
21

scalismo-native

Native libraries packaging for Scalismo
Java
1
star
22

scalismo-seed.g8

A minimal seed template for a Scalismo build
Scala
1
star
23

scalismo-faces-tutorial

A tutorial to get started with the Scalismo-Faces library
Scala
1
star
24

scalismo-tutorial

Tutorial for Scalismo and Scalismo-ui
Batchfile
1
star
25

shape-priors-from-pieces

Code repository for our MICCAI2020 ShapeMI workshop paper: "Learning Shape Priors from Pieces"
Scala
1
star