generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #285 from amosproj/general/copyright
added copyright header
- Loading branch information
Showing
97 changed files
with
366 additions
and
1 deletion.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
DifferenceGenerator/src/main/kotlin/AbstractDifferenceGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
|
||
/** | ||
* Abstract class for the DifferenceGenerator. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
import org.bytedeco.javacv.FFmpegFrameGrabber | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
import algorithms.AlignmentAlgorithm | ||
import algorithms.AlignmentElement | ||
import mask.CompositeMask | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
import org.opencv.core.Size | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
|
||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
|
||
fun main(args: Array<String>) { | ||
println("Hello, World") | ||
|
3 changes: 3 additions & 0 deletions
3
DifferenceGenerator/src/main/kotlin/algorithms/AlignmentAlgorithm.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package algorithms | ||
|
||
import DifferenceGeneratorStoppedException | ||
|
4 changes: 4 additions & 0 deletions
4
DifferenceGenerator/src/main/kotlin/algorithms/DivideAndConquerAligner.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
package algorithms | ||
|
||
import hashing.ObjectHasher | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
package algorithms | ||
|
||
import MetricInterface | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package hashing | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
DifferenceGenerator/src/main/kotlin/hashing/VideoFrameHasher.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package hashing | ||
|
||
import java.awt.image.BufferedImage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package mask | ||
|
||
import DifferenceGeneratorMaskException | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package mask | ||
|
||
import java.awt.image.BufferedImage | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package mask | ||
|
||
import java.awt.image.BufferedImage | ||
|
4 changes: 4 additions & 0 deletions
4
DifferenceGenerator/src/main/kotlin/metrics/MetricInterface.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
|
||
/** | ||
* Represents a metric interface that measures the distance between two objects of type T. | ||
* | ||
|
4 changes: 4 additions & 0 deletions
4
DifferenceGenerator/src/main/kotlin/metrics/PixelCountMetric.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
import java.awt.image.BufferedImage | ||
import java.awt.image.DataBufferByte | ||
import kotlin.experimental.and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package util | ||
|
||
import algorithms.AlignmentElement | ||
|
3 changes: 3 additions & 0 deletions
3
DifferenceGenerator/src/main/kotlin/util/ColoredFrameGenerator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package util | ||
|
||
import algorithms.AlignmentElement | ||
|
2 changes: 2 additions & 0 deletions
2
DifferenceGenerator/src/main/kotlin/wrappers/IterableFrameGrabber.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package wrappers | ||
|
||
import org.bytedeco.javacv.FFmpegFrameGrabber | ||
|
3 changes: 3 additions & 0 deletions
3
DifferenceGenerator/src/main/kotlin/wrappers/MaskedImageGrabber.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package wrappers | ||
|
||
import mask.Mask | ||
|
2 changes: 2 additions & 0 deletions
2
DifferenceGenerator/src/main/kotlin/wrappers/Resettable2DFrameConverter.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package wrappers | ||
|
||
import org.bytedeco.javacv.Frame | ||
|
2 changes: 2 additions & 0 deletions
2
DifferenceGenerator/src/main/kotlin/wrappers/ResettableArrayListIterator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package wrappers | ||
|
||
/** | ||
|
2 changes: 2 additions & 0 deletions
2
DifferenceGenerator/src/main/kotlin/wrappers/ResettableIterable.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package wrappers | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
import algorithms.AlignmentAlgorithm | ||
import algorithms.AlignmentElement | ||
import algorithms.Gotoh | ||
|
5 changes: 5 additions & 0 deletions
5
DifferenceGenerator/src/test/kotlin/DifferenceGeneratorTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
import algorithms.AlignmentAlgorithm | ||
import algorithms.AlignmentElement | ||
import algorithms.DivideAndConquerAligner | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
import algorithms.AlignmentElement | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
import org.bytedeco.javacv.FFmpegFrameGrabber | ||
import org.bytedeco.javacv.Frame | ||
import org.junit.jupiter.api.Tag | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
import algorithms.AlignmentElement | ||
import java.io.File | ||
import java.io.FilenameFilter | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
import org.bytedeco.javacv.Frame | ||
import org.junit.jupiter.api.Tag | ||
import org.junit.jupiter.api.Test | ||
|
3 changes: 3 additions & 0 deletions
3
DifferenceGenerator/src/test/kotlin/metrics/PixelCountMetricTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
import org.junit.jupiter.api.Assertions.assertEquals | ||
import org.junit.jupiter.api.Test | ||
import java.awt.Color | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: LuisGuenther <[email protected]> | ||
// SPDX-FileCopyrightText: Luis Günther <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
import androidx.compose.runtime.* | ||
import androidx.compose.ui.res.painterResource | ||
import androidx.compose.ui.unit.dp | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: fs3itz <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
package frameNavigation | ||
|
||
import FrameNavigationInterface | ||
|
5 changes: 5 additions & 0 deletions
5
GUI/src/main/kotlin/frameNavigation/FrameNavigationInterface.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
|
||
/** | ||
* Provides navigation methods for frames in a video. | ||
* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package logic | ||
|
||
import algorithms.AlignmentElement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package logic | ||
|
||
import algorithms.AlignmentElement | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
package logic | ||
|
||
import org.bytedeco.javacv.FFmpegFrameGrabber | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package logic | ||
|
||
import androidx.compose.ui.graphics.ImageBitmap | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package logic.caches | ||
|
||
import androidx.compose.ui.graphics.ImageBitmap | ||
|
4 changes: 4 additions & 0 deletions
4
GUI/src/main/kotlin/logic/differenceGeneratorWrapper/DifferenceGeneratorWrapper.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Simon Sasse <[email protected]> | ||
package logic.differenceGeneratorWrapper | ||
|
||
import DifferenceGenerator | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
package models | ||
|
||
import Screen | ||
|
4 changes: 4 additions & 0 deletions
4
GUI/src/main/kotlin/ui/components/diffScreen/FullScreenButton.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.foundation.Image | ||
|
6 changes: 6 additions & 0 deletions
6
GUI/src/main/kotlin/ui/components/diffScreen/ImageDisplayer.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.foundation.focusable | ||
|
3 changes: 3 additions & 0 deletions
3
GUI/src/main/kotlin/ui/components/diffScreen/NavigationRow.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.foundation.layout.Row | ||
|
7 changes: 7 additions & 0 deletions
7
GUI/src/main/kotlin/ui/components/diffScreen/SaveCollageButton.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: Luis Günther <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.foundation.layout.padding | ||
|
6 changes: 6 additions & 0 deletions
6
GUI/src/main/kotlin/ui/components/diffScreen/SaveInsertedFramesButton.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: Luis Günther <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.foundation.layout.padding | ||
|
2 changes: 2 additions & 0 deletions
2
GUI/src/main/kotlin/ui/components/diffScreen/ScreenKeyHandler.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.ui.ExperimentalComposeUiApi | ||
|
2 changes: 2 additions & 0 deletions
2
GUI/src/main/kotlin/ui/components/diffScreen/WindowCreator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
package ui.components.diffScreen | ||
|
||
import androidx.compose.runtime.Composable | ||
|
2 changes: 2 additions & 0 deletions
2
GUI/src/main/kotlin/ui/components/diffScreen/timeline/OverviewBar.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
package ui.components.diffScreen.timeline | ||
|
||
import androidx.compose.foundation.background | ||
|
3 changes: 3 additions & 0 deletions
3
GUI/src/main/kotlin/ui/components/diffScreen/timeline/PositionIndicator.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen.timeline | ||
|
||
import androidx.compose.foundation.Canvas | ||
|
3 changes: 3 additions & 0 deletions
3
GUI/src/main/kotlin/ui/components/diffScreen/timeline/StatisticalInformation.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
import algorithms.AlignmentElement | ||
import androidx.compose.foundation.background | ||
import androidx.compose.foundation.layout.* | ||
|
4 changes: 4 additions & 0 deletions
4
GUI/src/main/kotlin/ui/components/diffScreen/timeline/ThumbnailPreview.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen.timeline | ||
|
||
import androidx.compose.foundation.Canvas | ||
|
4 changes: 4 additions & 0 deletions
4
GUI/src/main/kotlin/ui/components/diffScreen/timeline/Timeline.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: AlperK61 <[email protected]> | ||
// SPDX-FileCopyrightText: Anton Kriese <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.diffScreen.timeline | ||
|
||
import StatisticalInformation | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: a-miscellaneous <[email protected]> | ||
// SPDX-FileCopyrightText: Fabian Seitz <[email protected]> | ||
// SPDX-FileCopyrightText: Luis Günther <[email protected]> | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
// SPDX-FileCopyrightText: zino212 <[email protected]> | ||
package ui.components.general | ||
|
||
import androidx.compose.foundation.layout.fillMaxWidth | ||
|
2 changes: 2 additions & 0 deletions
2
GUI/src/main/kotlin/ui/components/general/CheckIfSavedDialog.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// SPDX-License-Identifier: MIT | ||
// SPDX-FileCopyrightText: simonsasse <[email protected]> | ||
package ui.components.general | ||
|
||
import androidx.compose.runtime.Composable | ||
|
Oops, something went wrong.