├── .gitignore ├── LICENSE ├── README.md ├── ai.jpg ├── custom └── smartReplies │ ├── .gitignore │ ├── build.gradle.kts │ ├── gradle │ ├── libs.versions.toml │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle.kts │ └── shared │ ├── build.gradle.kts │ └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── architect │ │ └── smartreplies │ │ └── Platform.android.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── architect │ │ └── smartreplies │ │ ├── Greeting.kt │ │ └── Platform.kt │ └── iosMain │ └── kotlin │ └── com │ └── architect │ └── smartreplies │ └── Platform.ios.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ └── gradle-wrapper.jar ├── gradlew ├── gradlew.bat ├── settings.gradle.kts ├── shared ├── build.gradle.kts ├── shared.podspec └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── architect │ │ └── kmpmlkit │ │ ├── AndroidManifest.xml │ │ ├── KmpMLAndroid.kt │ │ ├── barcode │ │ └── external │ │ │ └── KmpMLBarcodeScanner.kt │ │ ├── converters │ │ └── MLKitConverters.kt │ │ ├── digitalInk │ │ └── KmpMLDigitalInk.kt │ │ ├── documentScanner │ │ └── external │ │ │ └── KmpMLDocumentScanner.kt │ │ ├── faceDetection │ │ ├── CoordinatesTransformer.kt │ │ └── KmpMLFacialDetection.kt │ │ ├── imageLabeling │ │ └── KmpMLImageLabeling.kt │ │ ├── languageIdentification │ │ └── KmpMLLanguageDetection.kt │ │ ├── objectDetection │ │ └── KmpMLObjectDetection.kt │ │ ├── poseDetection │ │ └── KmpMLPoseDetection.kt │ │ ├── smartReply │ │ └── KmpMLSmartReply.kt │ │ └── translation │ │ └── KmpMLTranslator.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── architect │ │ └── kmpmlkit │ │ ├── audio │ │ ├── KmpMLAudioEncryption.kt │ │ └── KmpMLAudioTextExtractor.kt │ │ ├── barcode │ │ ├── BarcodeScannerOptions.kt │ │ ├── BarcodeTypes.kt │ │ ├── embedded │ │ │ └── KmpEmbeddedBarcodeView.kt │ │ └── external │ │ │ └── KmpMLBarcodeScanner.kt │ │ ├── digitalInk │ │ └── KmpMLDigitalInk.kt │ │ ├── documentScanner │ │ └── external │ │ │ ├── KmpMLDocumentScanner.kt │ │ │ └── config │ │ │ └── ScannerOptions.kt │ │ ├── entityExtraction │ │ └── KmpMLTextExtractor.kt │ │ ├── extensions │ │ └── KmpMlLogger.kt │ │ ├── faceDetection │ │ ├── KmpMLFacialDetection.kt │ │ └── models │ │ │ ├── EulerCoordinates.kt │ │ │ ├── FacialCoordinates.kt │ │ │ ├── FacialLandmarks.kt │ │ │ └── LatitudeLongitude.kt │ │ ├── faceMesh │ │ └── KmpMLFacialMesh.kt │ │ ├── imageLabeling │ │ ├── KmpMLImageLabeling.kt │ │ └── models │ │ │ └── ImageLabels.kt │ │ ├── languageIdentification │ │ └── KmpMLLanguageDetection.kt │ │ ├── objectDetection │ │ ├── KmpMLObjectDetection.kt │ │ └── models │ │ │ ├── BoundedBoxCoordinates.kt │ │ │ └── DetectedLabels.kt │ │ ├── poseDetection │ │ ├── KmpMLPoseDetection.kt │ │ └── models │ │ │ ├── PoseCoordinates.kt │ │ │ ├── PoseLandmarks.kt │ │ │ └── PosePosition.kt │ │ ├── selfie │ │ └── KmpMLSelfie.kt │ │ ├── smartReply │ │ └── KmpMLSmartReply.kt │ │ ├── translation │ │ ├── KmpMLTranslator.kt │ │ └── TargetLanguage.kt │ │ └── typealiases │ │ └── Aliases.kt │ └── iosMain │ └── kotlin │ └── com │ └── architect │ └── kmpmlkit │ ├── barcode │ └── external │ │ └── KmpMLBarcodeScanner.kt │ ├── digitalInk │ └── KmpMLDigitalInk.kt │ ├── documentScanner │ └── external │ │ └── KmpMLDocumentScanner.kt │ ├── faceDetection │ └── KmpMLFacialDetection.kt │ ├── imageLabeling │ └── KmpMLImageLabeling.kt │ ├── languageIdentification │ └── KmpMLLanguageDetection.kt │ ├── objectDetection │ └── KmpMLObjectDetection.kt │ ├── poseDetection │ └── KmpMLPoseDetection.kt │ ├── smartReply │ └── KmpMLSmartReply.kt │ └── translation │ └── KmpMLTranslator.kt └── testClient ├── .gitignore ├── androidApp ├── build.gradle.kts └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── architect │ │ └── testclient │ │ └── android │ │ ├── MainActivity.kt │ │ └── MyApplicationTheme.kt │ └── res │ └── values │ └── styles.xml ├── build.gradle.kts ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── iosApp ├── iosApp.xcodeproj │ └── project.pbxproj └── iosApp │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── iOSApp.swift ├── settings.gradle.kts └── shared ├── build.gradle.kts └── src ├── androidMain └── kotlin │ └── com │ └── architect │ └── testclient │ └── Platform.android.kt ├── commonMain └── kotlin │ └── com │ └── architect │ └── testclient │ ├── Greeting.kt │ └── Platform.kt └── iosMain └── kotlin └── com └── architect └── testclient └── Platform.ios.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/README.md -------------------------------------------------------------------------------- /ai.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/ai.jpg -------------------------------------------------------------------------------- /custom/smartReplies/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/.gitignore -------------------------------------------------------------------------------- /custom/smartReplies/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/build.gradle.kts -------------------------------------------------------------------------------- /custom/smartReplies/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/gradle/libs.versions.toml -------------------------------------------------------------------------------- /custom/smartReplies/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /custom/smartReplies/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /custom/smartReplies/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/gradlew -------------------------------------------------------------------------------- /custom/smartReplies/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/gradlew.bat -------------------------------------------------------------------------------- /custom/smartReplies/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/settings.gradle.kts -------------------------------------------------------------------------------- /custom/smartReplies/shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/shared/build.gradle.kts -------------------------------------------------------------------------------- /custom/smartReplies/shared/src/androidMain/kotlin/com/architect/smartreplies/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/shared/src/androidMain/kotlin/com/architect/smartreplies/Platform.android.kt -------------------------------------------------------------------------------- /custom/smartReplies/shared/src/commonMain/kotlin/com/architect/smartreplies/Greeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/shared/src/commonMain/kotlin/com/architect/smartreplies/Greeting.kt -------------------------------------------------------------------------------- /custom/smartReplies/shared/src/commonMain/kotlin/com/architect/smartreplies/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/shared/src/commonMain/kotlin/com/architect/smartreplies/Platform.kt -------------------------------------------------------------------------------- /custom/smartReplies/shared/src/iosMain/kotlin/com/architect/smartreplies/Platform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/custom/smartReplies/shared/src/iosMain/kotlin/com/architect/smartreplies/Platform.ios.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/shared.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/shared.podspec -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/AndroidManifest.xml -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/KmpMLAndroid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/KmpMLAndroid.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/converters/MLKitConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/converters/MLKitConverters.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/faceDetection/CoordinatesTransformer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/faceDetection/CoordinatesTransformer.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/androidMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/audio/KmpMLAudioEncryption.kt: -------------------------------------------------------------------------------- 1 | package com.architect.kmpmlkit.audio 2 | 3 | class KmpMLAudioEncryption{ 4 | 5 | } -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/audio/KmpMLAudioTextExtractor.kt: -------------------------------------------------------------------------------- 1 | package com.architect.kmpmlkit.audio 2 | 3 | class KmpMLAudioTextExtractor { 4 | } 5 | 6 | -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/BarcodeScannerOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/BarcodeScannerOptions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/BarcodeTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/BarcodeTypes.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/embedded/KmpEmbeddedBarcodeView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/embedded/KmpEmbeddedBarcodeView.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/documentScanner/external/config/ScannerOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/documentScanner/external/config/ScannerOptions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/entityExtraction/KmpMLTextExtractor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/entityExtraction/KmpMLTextExtractor.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/extensions/KmpMlLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/extensions/KmpMlLogger.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/EulerCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/EulerCoordinates.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/FacialCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/FacialCoordinates.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/FacialLandmarks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/FacialLandmarks.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/LatitudeLongitude.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceDetection/models/LatitudeLongitude.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/faceMesh/KmpMLFacialMesh.kt: -------------------------------------------------------------------------------- 1 | package com.architect.kmpmlkit.faceMesh 2 | 3 | class KmpMLFacialMesh { 4 | } -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/imageLabeling/models/ImageLabels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/imageLabeling/models/ImageLabels.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/models/BoundedBoxCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/models/BoundedBoxCoordinates.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/models/DetectedLabels.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/objectDetection/models/DetectedLabels.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PoseCoordinates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PoseCoordinates.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PoseLandmarks.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PoseLandmarks.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PosePosition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/poseDetection/models/PosePosition.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/selfie/KmpMLSelfie.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/selfie/KmpMLSelfie.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/translation/TargetLanguage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/translation/TargetLanguage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/com/architect/kmpmlkit/typealiases/Aliases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/commonMain/kotlin/com/architect/kmpmlkit/typealiases/Aliases.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/barcode/external/KmpMLBarcodeScanner.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/digitalInk/KmpMLDigitalInk.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/documentScanner/external/KmpMLDocumentScanner.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/faceDetection/KmpMLFacialDetection.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/imageLabeling/KmpMLImageLabeling.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/languageIdentification/KmpMLLanguageDetection.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/objectDetection/KmpMLObjectDetection.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/poseDetection/KmpMLPoseDetection.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/smartReply/KmpMLSmartReply.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/shared/src/iosMain/kotlin/com/architect/kmpmlkit/translation/KmpMLTranslator.kt -------------------------------------------------------------------------------- /testClient/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/.gitignore -------------------------------------------------------------------------------- /testClient/androidApp/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/androidApp/build.gradle.kts -------------------------------------------------------------------------------- /testClient/androidApp/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/androidApp/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /testClient/androidApp/src/main/java/com/architect/testclient/android/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/androidApp/src/main/java/com/architect/testclient/android/MainActivity.kt -------------------------------------------------------------------------------- /testClient/androidApp/src/main/java/com/architect/testclient/android/MyApplicationTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/androidApp/src/main/java/com/architect/testclient/android/MyApplicationTheme.kt -------------------------------------------------------------------------------- /testClient/androidApp/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/androidApp/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /testClient/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/build.gradle.kts -------------------------------------------------------------------------------- /testClient/gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/gradle/libs.versions.toml -------------------------------------------------------------------------------- /testClient/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /testClient/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /testClient/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/gradlew -------------------------------------------------------------------------------- /testClient/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/gradlew.bat -------------------------------------------------------------------------------- /testClient/iosApp/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/ContentView.swift -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/Info.plist -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /testClient/iosApp/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/iosApp/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /testClient/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/settings.gradle.kts -------------------------------------------------------------------------------- /testClient/shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/shared/build.gradle.kts -------------------------------------------------------------------------------- /testClient/shared/src/androidMain/kotlin/com/architect/testclient/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/shared/src/androidMain/kotlin/com/architect/testclient/Platform.android.kt -------------------------------------------------------------------------------- /testClient/shared/src/commonMain/kotlin/com/architect/testclient/Greeting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/shared/src/commonMain/kotlin/com/architect/testclient/Greeting.kt -------------------------------------------------------------------------------- /testClient/shared/src/commonMain/kotlin/com/architect/testclient/Platform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/shared/src/commonMain/kotlin/com/architect/testclient/Platform.kt -------------------------------------------------------------------------------- /testClient/shared/src/iosMain/kotlin/com/architect/testclient/Platform.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ares-Defence-Labs/NeuralKMP/HEAD/testClient/shared/src/iosMain/kotlin/com/architect/testclient/Platform.ios.kt --------------------------------------------------------------------------------