├── .gitignore ├── Assets ├── App Previews │ ├── 5.5 │ │ ├── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png │ │ ├── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png │ │ ├── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png │ │ └── wrongDimensions │ │ │ ├── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png │ │ │ ├── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png │ │ │ └── Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png │ ├── 6.5 │ │ ├── Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.01.png │ │ ├── Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.15.png │ │ └── Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.23.png │ ├── 6.7 │ │ ├── Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.26.38.png │ │ ├── Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.07.png │ │ └── Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.10.png │ └── iPad 13 │ │ ├── Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.27.png │ │ ├── Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.32.png │ │ └── Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.35.png └── AppIcons │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 102.png │ │ ├── 1024.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 128.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 16.png │ │ ├── 167.png │ │ ├── 172.png │ │ ├── 180.png │ │ ├── 196.png │ │ ├── 20.png │ │ ├── 216.png │ │ ├── 256.png │ │ ├── 29.png │ │ ├── 32.png │ │ ├── 40.png │ │ ├── 48.png │ │ ├── 50.png │ │ ├── 512.png │ │ ├── 55.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 64.png │ │ ├── 66.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── 88.png │ │ ├── 92.png │ │ └── Contents.json │ ├── appstore.png │ └── playstore.png ├── README.md ├── Stage1_DataCollection ├── HowsMyEating_DataCollection.xcodeproj │ └── project.pbxproj ├── HowsMyEating_DataCollection │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── 1024.png │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Capture │ │ └── DeviceLookup.swift │ ├── ContentView.swift │ ├── HowsMyEating_DataCollection.entitlements │ ├── HowsMyEating_DataCollectionApp.swift │ ├── Info.plist │ ├── Manager │ │ ├── CameraManager.swift │ │ ├── MotionManager.swift │ │ └── head.obj │ ├── Model │ │ └── DataTypes.swift │ └── ViewController │ │ ├── ActivityViewController.swift │ │ ├── CameraControlView.swift │ │ ├── CameraView.swift │ │ └── MotionManagerViewRepresentable.swift ├── HowsMyEating_DataCollectionTests │ └── HowsMyEating_DataCollectionTests.swift ├── HowsMyEating_DataCollectionUITests │ ├── HowsMyEating_DataCollectionUITests.swift │ └── HowsMyEating_DataCollectionUITestsLaunchTests.swift └── README.md └── Stage2_Labelling ├── .gitignore ├── README.md ├── components.json ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── tauri.svg └── vite.svg ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── capabilities │ └── default.json ├── executables │ ├── __init__.py │ ├── chunks.py │ ├── compare.py │ ├── config │ │ ├── __init__.py │ │ └── global_config.py │ ├── exporting.py │ ├── hooks │ │ └── hook-cv2.py │ ├── merge.py │ ├── models │ │ └── __init__.py │ ├── mov_info.py │ ├── not_chew.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── compare_visuals.py │ │ ├── export_handler.py │ │ ├── labels_to_csv.py │ │ ├── mov_info.py │ │ ├── not_chew.py │ │ ├── process.py │ │ └── split_video_by_events.py │ ├── process.py │ ├── tests │ │ ├── __init__.py │ │ ├── executables.py │ │ └── pipeline.py │ └── utils │ │ ├── __init__.py │ │ ├── capture.py │ │ ├── csv.py │ │ ├── detection.py │ │ ├── files.py │ │ ├── formatter.py │ │ ├── geometry.py │ │ ├── json.py │ │ ├── labeling.py │ │ ├── logging.py │ │ ├── overlay.py │ │ └── video_audio.py ├── icons │ ├── 128x128.png │ ├── 128x128@2x.png │ ├── 32x32.png │ ├── Square107x107Logo.png │ ├── Square142x142Logo.png │ ├── Square150x150Logo.png │ ├── Square284x284Logo.png │ ├── Square30x30Logo.png │ ├── Square310x310Logo.png │ ├── Square44x44Logo.png │ ├── Square71x71Logo.png │ ├── Square89x89Logo.png │ ├── StoreLogo.png │ ├── icon.icns │ ├── icon.ico │ └── icon.png ├── src │ ├── lib.rs │ └── main.rs └── tauri.conf.json ├── src ├── App.css ├── App.tsx ├── assets │ └── react.svg ├── components │ ├── DefaultWelcomeScreen.tsx │ ├── ExportSelectedData.tsx │ ├── ImportedData.tsx │ ├── SelectedDataDashboard.tsx │ ├── Sidebar.tsx │ ├── labelling │ │ ├── ControlPanel.tsx │ │ ├── LabelDatatContainer.tsx │ │ ├── MarkerControlsOverlay.tsx │ │ ├── MarkersLog.tsx │ │ ├── Timeline.tsx │ │ ├── VideoDisplay.tsx │ │ ├── VideoMarker.tsx │ │ └── VideoPlaybackControls.tsx │ ├── ui │ │ ├── accordion.tsx │ │ ├── button.tsx │ │ ├── card.tsx │ │ ├── dialog.tsx │ │ ├── input.tsx │ │ ├── progress.tsx │ │ ├── resizable.tsx │ │ ├── scroll-area.tsx │ │ ├── separator.tsx │ │ ├── sheet.tsx │ │ ├── sidebar.tsx │ │ ├── skeleton.tsx │ │ ├── slider.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ ├── toggle-group.tsx │ │ ├── toggle.tsx │ │ └── tooltip.tsx │ └── verify │ │ ├── VerifyDataContainer.tsx │ │ └── VideoCarousel.tsx ├── context │ ├── AppContext.tsx │ └── ChewingDataContextProvider.tsx ├── hooks │ ├── use-mobile.tsx │ ├── use-toast.ts │ └── useLog.tsx ├── lib │ └── utils.ts ├── main.tsx ├── pipeline │ ├── checks │ │ ├── initialDataImports.ts │ │ └── movInfo.ts │ ├── collectMovInfo │ │ ├── fileValidations.ts │ │ └── filesExist.ts │ ├── commands │ │ ├── chunks.ts │ │ ├── collectMovInfo.ts │ │ ├── computeRatios.ts │ │ ├── exporting.ts │ │ ├── merge.ts │ │ ├── processVisuals.ts │ │ ├── runNoChew.ts │ │ └── types.ts │ ├── taskProcessor.ts │ └── validations │ │ └── validataData.ts ├── tests │ ├── pipeline │ │ └── pipeline.test.ts │ └── utilities │ │ ├── appendDataToJson.test.ts │ │ ├── commands.test.ts │ │ ├── copyFiles.test.ts │ │ ├── createVerifiedJson.test.ts │ │ ├── directoryChecks.test.ts │ │ ├── fileChecks.test.ts │ │ ├── handleExportData.test.ts │ │ ├── handleFileSystemEvent.test.ts │ │ ├── importData.test.ts │ │ └── isValid.test.ts ├── types │ ├── ChewingData.types.ts │ ├── Markers.ts │ └── index.d.ts ├── utilities │ ├── appendDataToJson.ts │ ├── commands.ts │ ├── copyFiles.tsx │ ├── createVerifiedJson.ts │ ├── directoryChecks.ts │ ├── fileChecks.ts │ ├── handleExportData.ts │ ├── handleFileSystemEvent.ts │ ├── importData.ts │ ├── isValid.ts │ ├── logger.ts │ └── moveFolderToArchived.ts └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png -------------------------------------------------------------------------------- /Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png -------------------------------------------------------------------------------- /Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png -------------------------------------------------------------------------------- /Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.35.png -------------------------------------------------------------------------------- /Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.39.png -------------------------------------------------------------------------------- /Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/5.5/wrongDimensions/Simulator Screenshot - iPhone SE (3rd generation) - 2024-08-20 at 15.34.42.png -------------------------------------------------------------------------------- /Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.01.png -------------------------------------------------------------------------------- /Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.15.png -------------------------------------------------------------------------------- /Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.5/Simulator Screenshot - iPhone 11 Pro Max - 2024-08-20 at 15.23.23.png -------------------------------------------------------------------------------- /Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.26.38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.26.38.png -------------------------------------------------------------------------------- /Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.07.png -------------------------------------------------------------------------------- /Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/6.7/Simulator Screenshot - iPhone 15 Pro Max - 2024-08-20 at 15.27.10.png -------------------------------------------------------------------------------- /Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.27.png -------------------------------------------------------------------------------- /Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.32.png -------------------------------------------------------------------------------- /Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/App Previews/iPad 13/Simulator Screenshot - iPad Air 13-inch (M2) - 2024-08-20 at 15.42.35.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/102.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/102.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/128.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/16.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/172.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/172.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/196.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/216.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/256.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/32.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/48.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/512.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/55.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/64.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/66.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/88.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/88.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/92.png -------------------------------------------------------------------------------- /Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets/AppIcons/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/appstore.png -------------------------------------------------------------------------------- /Assets/AppIcons/playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Assets/AppIcons/playstore.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/README.md -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Capture/DeviceLookup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Capture/DeviceLookup.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/ContentView.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/HowsMyEating_DataCollection.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/HowsMyEating_DataCollection.entitlements -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/HowsMyEating_DataCollectionApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/HowsMyEating_DataCollectionApp.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Info.plist -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Manager/CameraManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Manager/CameraManager.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Manager/MotionManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Manager/MotionManager.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Manager/head.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Manager/head.obj -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/Model/DataTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/Model/DataTypes.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/ActivityViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/ActivityViewController.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/CameraControlView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/CameraControlView.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/CameraView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/CameraView.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/MotionManagerViewRepresentable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollection/ViewController/MotionManagerViewRepresentable.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollectionTests/HowsMyEating_DataCollectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollectionTests/HowsMyEating_DataCollectionTests.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollectionUITests/HowsMyEating_DataCollectionUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollectionUITests/HowsMyEating_DataCollectionUITests.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/HowsMyEating_DataCollectionUITests/HowsMyEating_DataCollectionUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/HowsMyEating_DataCollectionUITests/HowsMyEating_DataCollectionUITestsLaunchTests.swift -------------------------------------------------------------------------------- /Stage1_DataCollection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage1_DataCollection/README.md -------------------------------------------------------------------------------- /Stage2_Labelling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/.gitignore -------------------------------------------------------------------------------- /Stage2_Labelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/README.md -------------------------------------------------------------------------------- /Stage2_Labelling/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/components.json -------------------------------------------------------------------------------- /Stage2_Labelling/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/index.html -------------------------------------------------------------------------------- /Stage2_Labelling/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/package-lock.json -------------------------------------------------------------------------------- /Stage2_Labelling/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/package.json -------------------------------------------------------------------------------- /Stage2_Labelling/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/postcss.config.js -------------------------------------------------------------------------------- /Stage2_Labelling/public/tauri.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/public/tauri.svg -------------------------------------------------------------------------------- /Stage2_Labelling/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/public/vite.svg -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/.gitignore -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/Cargo.lock -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/Cargo.toml -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/build.rs -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/capabilities/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/capabilities/default.json -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/chunks.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/compare.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/config/global_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/config/global_config.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/exporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/exporting.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/hooks/hook-cv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/hooks/hook-cv2.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/merge.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/mov_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/mov_info.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/not_chew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/not_chew.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/compare_visuals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/compare_visuals.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/export_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/export_handler.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/labels_to_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/labels_to_csv.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/mov_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/mov_info.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/not_chew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/not_chew.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/process.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/pipeline/split_video_by_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/pipeline/split_video_by_events.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/process.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/tests/executables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/tests/executables.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/tests/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/tests/pipeline.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/capture.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/csv.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/detection.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/files.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/formatter.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/geometry.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/json.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/labeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/labeling.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/logging.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/overlay.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/executables/utils/video_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/executables/utils/video_audio.py -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/128x128.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/128x128@2x.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/32x32.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square107x107Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square107x107Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square142x142Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square142x142Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square150x150Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square150x150Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square284x284Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square284x284Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square30x30Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square30x30Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square310x310Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square310x310Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square44x44Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square44x44Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square71x71Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square71x71Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/Square89x89Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/Square89x89Logo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/StoreLogo.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/icon.icns -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/icon.ico -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/icons/icon.png -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/src/lib.rs -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/src/main.rs -------------------------------------------------------------------------------- /Stage2_Labelling/src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src-tauri/tauri.conf.json -------------------------------------------------------------------------------- /Stage2_Labelling/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/App.css -------------------------------------------------------------------------------- /Stage2_Labelling/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/App.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/assets/react.svg -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/DefaultWelcomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/DefaultWelcomeScreen.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ExportSelectedData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ExportSelectedData.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ImportedData.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ImportedData.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/SelectedDataDashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/SelectedDataDashboard.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/Sidebar.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/ControlPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/ControlPanel.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/LabelDatatContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/LabelDatatContainer.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/MarkerControlsOverlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/MarkerControlsOverlay.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/MarkersLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/MarkersLog.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/Timeline.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/Timeline.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/VideoDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/VideoDisplay.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/VideoMarker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/VideoMarker.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/labelling/VideoPlaybackControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/labelling/VideoPlaybackControls.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/button.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/card.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/input.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/progress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/progress.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/resizable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/resizable.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/scroll-area.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/scroll-area.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/slider.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/toggle-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/toggle-group.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/toggle.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/verify/VerifyDataContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/verify/VerifyDataContainer.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/components/verify/VideoCarousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/components/verify/VideoCarousel.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/context/AppContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/context/AppContext.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/context/ChewingDataContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/context/ChewingDataContextProvider.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/hooks/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/hooks/use-toast.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/hooks/useLog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/hooks/useLog.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/lib/utils.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/main.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/checks/initialDataImports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/checks/initialDataImports.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/checks/movInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/checks/movInfo.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/collectMovInfo/fileValidations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/collectMovInfo/fileValidations.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/collectMovInfo/filesExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/collectMovInfo/filesExist.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/chunks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/chunks.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/collectMovInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/collectMovInfo.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/computeRatios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/computeRatios.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/exporting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/exporting.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/merge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/merge.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/processVisuals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/processVisuals.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/runNoChew.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/runNoChew.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/commands/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/commands/types.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/taskProcessor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/taskProcessor.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/pipeline/validations/validataData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/pipeline/validations/validataData.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/pipeline/pipeline.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/pipeline/pipeline.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/appendDataToJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/appendDataToJson.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/commands.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/copyFiles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/copyFiles.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/createVerifiedJson.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/createVerifiedJson.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/directoryChecks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/directoryChecks.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/fileChecks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/fileChecks.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/handleExportData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/handleExportData.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/handleFileSystemEvent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/handleFileSystemEvent.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/importData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/importData.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/tests/utilities/isValid.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/tests/utilities/isValid.test.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/types/ChewingData.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/types/ChewingData.types.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/types/Markers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/types/Markers.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/types/index.d.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/appendDataToJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/appendDataToJson.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/commands.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/copyFiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/copyFiles.tsx -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/createVerifiedJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/createVerifiedJson.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/directoryChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/directoryChecks.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/fileChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/fileChecks.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/handleExportData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/handleExportData.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/handleFileSystemEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/handleFileSystemEvent.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/importData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/importData.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/isValid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/isValid.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/logger.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/utilities/moveFolderToArchived.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/src/utilities/moveFolderToArchived.ts -------------------------------------------------------------------------------- /Stage2_Labelling/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /Stage2_Labelling/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/tailwind.config.js -------------------------------------------------------------------------------- /Stage2_Labelling/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/tsconfig.json -------------------------------------------------------------------------------- /Stage2_Labelling/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/tsconfig.node.json -------------------------------------------------------------------------------- /Stage2_Labelling/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZSturman/Hows-My-Eating/HEAD/Stage2_Labelling/vite.config.ts --------------------------------------------------------------------------------