All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.raumzeitfalle.registration.alignment.RigidTransformCalculation Maven / Gradle / Ivy

Go to download

A collection of functions for image registration based on control points using rigid and affine transforms.

There is a newer version: 0.0.7
Show newest version
/*-
 * #%L
 * Image-Registration
 * %%
 * Copyright (C) 2019 Oliver Loeffler, Raumzeitfalle.net
 * %%
 * 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.
 * #L%
 */
package net.raumzeitfalle.registration.alignment;

import java.util.*;
import java.util.function.*;
import java.util.stream.Collectors;

import net.raumzeitfalle.registration.DegreesOfFreedom;
import net.raumzeitfalle.registration.displacement.Displacement;

/**
 * 
 * Calculates rotation and translation (x,y) for the given collection of displacements.
 * A rigid body transform will preserve all distances between points.
 *  
 * @author oliver
 *
 */
public final class RigidTransformCalculation implements BiFunction, Predicate, RigidTransform>{
	
	private final RigidBodyModel model;
	
	public RigidTransformCalculation() {
		this(new BasicRigidBodyModel());
	}

	public RigidTransformCalculation(RigidBodyModel model) {
		this.model = Objects.requireNonNull(model, "The used model for calculation must not be null (RigidBodyModel).");
	}

	/**
	 * Calculates the alignment parameters (translationX, translationY and rotation) for the given collection of displacements.
	 * When no displacements are left after filtering with the given predicate, then the {@link SkipRigidTransform} is returned. Otherwise the results is returned as {@link SimpleRigidTransform}.
	 * 

* The {@link BasicRigidBodyModel} is used for calculation. *

* For cases where no sites are selected for calculation (e.g. the predicate does not match any given displacement), * A {@link SkipRigidTransform} is returned instead of a {@link SimpleRigidTransform}. When used in data processing, * the {@link SkipRigidTransform} will just pass through all given data without any modification. * * @param displacements Collection of {@link Displacement} * @param selector {@link Predicate} which describes which {@link Displacement} elements shall be used for alignment * @return {@link RigidTransform} providing translation (x,y) and rotation values. */ @Override public RigidTransform apply(Collection displacements, Predicate selector) { DegreesOfFreedom degreesOfFreedom = new DegreesOfFreedom(); List equations = displacements.stream() .filter(selector) .map(degreesOfFreedom) .flatMap(RigidModelEquation::from) .collect(Collectors.toList()); if (equations.isEmpty()) { return continueUnaligned(); } return model.solve(equations, degreesOfFreedom); } private RigidTransform continueUnaligned() { return new SkipRigidTransform(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy