Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Intensity Projection
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Bioimage Analysis
Intensity Projection
Commits
446941f3
Commit
446941f3
authored
4 years ago
by
Stéphane DALLONGEVILLE
Browse files
Options
Downloads
Patches
Plain Diff
initial commit of mavenized version
parent
c265fdb6
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+7
-0
7 additions, 0 deletions
.gitignore
pom.xml
+92
-0
92 additions, 0 deletions
pom.xml
src/main/java/plugins/adufour/projection/Projection.java
+688
-0
688 additions, 0 deletions
src/main/java/plugins/adufour/projection/Projection.java
with
787 additions
and
0 deletions
.gitignore
0 → 100644
+
7
−
0
View file @
446941f3
/target
.project
.classpath
*.prefs
*.jardesc
*.jar
.settings/
\ No newline at end of file
This diff is collapsed.
Click to expand it.
pom.xml
0 → 100644
+
92
−
0
View file @
446941f3
<?xml version="1.0" encoding="UTF-8"?>
<project
xmlns=
"http://maven.apache.org/POM/4.0.0"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
>
<modelVersion>
4.0.0
</modelVersion>
<!-- Inherited Icy Parent POM -->
<parent>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
parent-pom-plugin
</artifactId>
<version>
1.0.1
</version>
</parent>
<!-- Project Information -->
<artifactId>
intensity-projection
</artifactId>
<version>
1.6.2
</version>
<packaging>
jar
</packaging>
<name>
Intensity Projection plugin
</name>
<description>
Intensity projection along depth or time with multiple algorithms: mean, max, median, variance, standard deviation, saturated sum. Projection can be restricted to ROI.
</description>
<url>
http://icy.bioimageanalysis.org/plugin/intensity-projection
</url>
<inceptionYear>
2020
</inceptionYear>
<organization>
<name>
Institut Pasteur - BIA
</name>
<url>
http://icy.bioimageanalysis.org
</url>
</organization>
<licenses>
<license>
<name>
GNU GPLv3
</name>
<url>
https://www.gnu.org/licenses/gpl-3.0.en.html
</url>
<distribution>
repo
</distribution>
</license>
</licenses>
<developers>
<developer>
<id>
adufour
</id>
<name>
Alexandre Dufour
</name>
<roles>
<role>
developer
</role>
<role>
debugger
</role>
<role>
tester
</role>
<role>
maintainer
</role>
<role>
support
</role>
</roles>
</developer>
</developers>
<!-- Project properties -->
<properties>
</properties>
<!-- Project build configuration -->
<build>
</build>
<!-- List of project's dependencies -->
<dependencies>
<!-- The core of Icy -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
icy-kernel
</artifactId>
</dependency>
<!-- The EzPlug library, simplifies writing UI for Icy plugins. -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
ezplug
</artifactId>
</dependency>
<!-- The EzPlug library, simplifies writing UI for Icy plugins. -->
<dependency>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
protocols
</artifactId>
<version>
${protocols.version}
</version>
</dependency>
</dependencies>
<!-- Icy Maven repository (to find parent POM) -->
<repositories>
<repository>
<id>
icy
</id>
<name>
Icy's Nexus
</name>
<url>
https://icy-nexus.pasteur.fr/repository/Icy/
</url>
</repository>
</repositories>
</project>
This diff is collapsed.
Click to expand it.
src/main/java/plugins/adufour/projection/Projection.java
0 → 100644
+
688
−
0
View file @
446941f3
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment