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

Download JAR files tagged by affine with all dependencies

Search JAR files by class name

affine-hull from group org.webjars.npm (version 1.0.0)

WebJar for affine-hull

Group: org.webjars.npm Artifact: affine-hull
Show documentation Show source 
 

0 downloads
Artifact affine-hull
Group org.webjars.npm
Version 1.0.0
Last update 05. March 2018
Organization not specified
URL http://webjars.org
License MIT
Dependencies amount 1
Dependencies robust-orientation,
There are maybe transitive dependencies!

jung-jai from group net.sf.jung (version 2.0.1)

Jung2 rendering project that uses Java Advanced Imaging (JAI) for non-affine transforms

Group: net.sf.jung Artifact: jung-jai
Show all versions Show source 
 

0 downloads
Artifact jung-jai
Group net.sf.jung
Version 2.0.1
Last update 24. January 2010
Organization not specified
URL http://jung.sourceforge.net/site/jung-jai
License not specified
Dependencies amount 2
Dependencies jung-api, jung-visualization,
There are maybe transitive dependencies!

swim-math from group org.swimos (version 4.3.15)

Mathematical and geometric structures, including rings, fields, vector modules and spaces, affine spaces, tensor spaces, probability distributions, and associated operators

Group: org.swimos Artifact: swim-math
Show all versions Show documentation Show source 
 

0 downloads
Artifact swim-math
Group org.swimos
Version 4.3.15
Last update 17. June 2024
Organization not specified
URL https://github.com/swimos/swim/tree/main/swim-java/swim-runtime/swim-core/swim.math
License The Apache Software License, Version 2.0
Dependencies amount 2
Dependencies swim-codec, swim-structure,
There are maybe transitive dependencies!

image-registration from group net.raumzeitfalle.registration (version 0.0.7)

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

Group: net.raumzeitfalle.registration Artifact: image-registration
Show all versions Show documentation Show source 
 

0 downloads
Artifact image-registration
Group net.raumzeitfalle.registration
Version 0.0.7
Last update 26. April 2023
Organization Oliver Loeffler, Raumzeitfalle.net
URL https://oliver-loeffler.github.io/image-registration
License The Apache License, Version 2.0
Dependencies amount 1
Dependencies solver-api,
There are maybe transitive dependencies!

core from group net.raumzeitfalle.registration (version 0.0.6)

A collection of functions to perform rigid and affine transforms for image registration using control points.

Group: net.raumzeitfalle.registration Artifact: core
Show documentation Show source 
 

0 downloads
Artifact core
Group net.raumzeitfalle.registration
Version 0.0.6
Last update 23. April 2023
Organization Oliver Loeffler, Raumzeitfalle.net
URL https://oliver-loeffler.github.io/image-registration
License The Apache License, Version 2.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

aadd from group com.github.tuk-cps (version 1.1.0)

This project implements Affine Arithmetic Decision Diagrams (AADD) in Java. AADD permit in particular the symbolic execution of Java codes.

Group: com.github.tuk-cps Artifact: aadd
Show all versions Show documentation Show source 
 

0 downloads
Artifact aadd
Group com.github.tuk-cps
Version 1.1.0
Last update 17. October 2019
Organization not specified
URL https://github.com/TUK-CPS/jAADD
License The MIT License
Dependencies amount 3
Dependencies commons-math3, json, gson,
There are maybe transitive dependencies!

randomhash from group edu.princeton.cs (version 1.1.1)

A simple, time-tested, family of random hash functions in Java, based on CRC32, affine transformations, and the Mersenne Twister, suitable for use in production probabilistic data streaming algorithms like HyperLogLog.

Group: edu.princeton.cs Artifact: randomhash
Show all versions Show documentation Show source 
 

0 downloads
Artifact randomhash
Group edu.princeton.cs
Version 1.1.1
Last update 29. June 2022
Organization not specified
URL https://github.com/jlumbroso/java-random-hash
License Lesser General Public License (LGPL), v3.0
Dependencies amount 0
Dependencies No dependencies
There are maybe transitive dependencies!

learning from group de.cit-ec.tcs.alignment (version 3.1.1)

This module is a custom implementation of the Large Margin Nearest Neighbor classification scheme of Weinberger, Saul, et al. (2009). It contains an implementation of the k-nearest neighbor and LMNN classifier as well as (most importantly) gradient calculation schemes on the LMNN cost function given a sequential data set and a user-choice of alignment algorithm. This enables users to learn parameters of the alignment distance in question using a gradient descent on the LMNN cost function. More information on this approach can be found in the Masters Thesis "Adaptive Affine Sequence Alignment Using Algebraic Dynamic Programming"

Group: de.cit-ec.tcs.alignment Artifact: learning
Show all versions Show documentation Show source 
 

0 downloads
Artifact learning
Group de.cit-ec.tcs.alignment
Version 3.1.1
Last update 26. October 2018
Organization not specified
URL http://openresearch.cit-ec.de/projects/tcs
License The GNU Affero General Public License, Version 3
Dependencies amount 1
Dependencies algorithms,
There are maybe transitive dependencies!

adp from group de.cit-ec.tcs.alignment (version 3.1.1)

This module contains a more general approach to construct AlignmentAlgorithms by relying on the theoretical concept of Algebraic Dynamic Programming (ADP) as developed by Giegerich et al. ADP defines four ingredients for an alignment algorithm: 1.) A signature that defines the permitted alignment operations. Operations are just function templates with an associated arity, meaning the number of arguments it takes from the left sequence and from the right sequence. In the TCSAlignmentToolbox we have a fixed signature with the following operations: REPLACEMENT(1, 1), DELETION(1, 0), INSERTION(0, 1), SKIPDELETION(1, 0) and SKIPINSERTION(0, 1) 2.) A regular tree grammar that produces alignments, that is: sequences of operations, in a restricted fashion. 3.) An algebra that can translate such trees to a cost. In the TCSAlignmentToolbox this is a Comparator. 4.) A choice function, in case of the TCSAlignmentToolbox: the strict minimum or the soft minimum. An alignment algorithm in the TCSAlignmentToolbox sense of the word then is the combination of choice function and grammar. While we provide hardcoded versions of these combinations in the main package, the adp package allows you to create your own grammars. You can combine them with a choice function by instantiating one of the Algorithm classes provided in this package with a grammar of your choice. For example: AlignmentAlgorithm algo = new SoftADPScoreAlgorithm(my_grammar, comparator); creates an alignment algorithm that implicitly produces all possible alignments your grammar can construct with the given input, translates them to a cost using the algebra/comparator you provided and applies the soft minimum to return the score. This all gets efficient by dynamic programming. Note that there is runtime overhead when using this method in comparison with the hardcoded algorithms. But for complicated grammars this is a much easier way to go. For more information on the theory, please refer to my master's thesis: "Adaptive Affine Sequence Alignment using Algebraic Dynamic Programming"

Group: de.cit-ec.tcs.alignment Artifact: adp
Show all versions Show documentation Show source 
 

0 downloads
Artifact adp
Group de.cit-ec.tcs.alignment
Version 3.1.1
Last update 26. October 2018
Organization not specified
URL http://openresearch.cit-ec.de/projects/tcs
License The GNU Affero General Public License, Version 3
Dependencies amount 1
Dependencies algorithms,
There are maybe transitive dependencies!



Page 1 from 1 (items total 9)


© 2015 - 2024 Weber Informatics LLC | Privacy Policy