├── .eslintrc ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── ux_issue.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── aws-deploy.yml │ ├── deploy-public-build.yml │ ├── pr-preview.yml │ ├── release.yml │ └── run-static-checks.yml ├── .gitignore ├── .prettierrc ├── 404.html ├── ACKNOWLEDGEMENTS.md ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── SUPPORT.md ├── __mocks__ └── zustand.ts ├── config └── vite.internal-build.config.js ├── env.d.ts ├── index.html ├── package.json ├── public └── images │ ├── aics-logo.svg │ └── meta-image.png ├── src ├── Viewer.module.css ├── Viewer.tsx ├── assets │ ├── fonts │ │ ├── Lato-Regular.eot │ │ ├── Lato-Regular.ttf │ │ ├── Lato-Regular.woff │ │ ├── Lato-Regular.woff2 │ │ └── index.ts │ ├── images │ │ ├── AICS-logo-and-name.svg │ │ ├── AICS-logo.svg │ │ ├── dropdown-arrow.svg │ │ ├── icon-images-slash.svg │ │ ├── icon-images.svg │ │ ├── icon-switch-arrows.svg │ │ ├── icon-tag-add.svg │ │ ├── icon-tag-slash.svg │ │ ├── icon-tag.svg │ │ ├── index.ts │ │ ├── no-image.svg │ │ ├── spin_box-handle-down.svg │ │ └── spin_box-handle-up.svg │ ├── index.ts │ └── videos │ │ ├── banner_video.mp4 │ │ └── index.ts ├── colorizer │ ├── AnnotationData.ts │ ├── CanvasOverlay.ts │ ├── Collection.ts │ ├── ColorRamp.ts │ ├── ColorizeCanvas2D.ts │ ├── ColorizeCanvas3D.ts │ ├── DataCache.ts │ ├── Dataset.ts │ ├── IInnerRenderCanvas.ts │ ├── IRenderCanvas.ts │ ├── Plotting.ts │ ├── TimeControls.ts │ ├── Track.ts │ ├── VectorField.ts │ ├── canvas │ │ ├── elements │ │ │ ├── annotations.ts │ │ │ ├── footer.ts │ │ │ ├── header.ts │ │ │ ├── index.ts │ │ │ ├── insetBox.ts │ │ │ ├── legend.ts │ │ │ ├── scaleBar.ts │ │ │ └── timestamp.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── colors │ │ ├── categorical_palettes.ts │ │ ├── color_ramps.ts │ │ └── glasbey.ts │ ├── constants.ts │ ├── index.ts │ ├── loaders │ │ ├── ILoader.ts │ │ ├── ImageFrameLoader.ts │ │ └── UrlArrayLoader.ts │ ├── path_resolvers │ │ ├── FilePathResolver.ts │ │ ├── IPathResolver.ts │ │ ├── UrlPathResolver.ts │ │ └── index.ts │ ├── recorders │ │ ├── CanvasRecorder.ts │ │ ├── ImageSequenceRecorder.ts │ │ └── Mp4VideoRecorder.ts │ ├── shaders │ │ ├── cellId_RGBA8U.frag │ │ ├── colorize.vert │ │ └── colorize_RGBA8U.frag │ ├── types.ts │ ├── utils │ │ ├── analytics.ts │ │ ├── annotation_utils.ts │ │ ├── channels.ts │ │ ├── collection_utils.ts │ │ ├── correlation.ts │ │ ├── data_load_utils.ts │ │ ├── data_utils.ts │ │ ├── dataset_utils.ts │ │ ├── math_utils.ts │ │ ├── texture_utils.ts │ │ ├── timing_utils.ts │ │ ├── type_utils.ts │ │ └── url_utils.ts │ └── workers │ │ ├── SharedWorkerPool.ts │ │ └── worker.ts ├── components │ ├── AssetWrappers │ │ └── BannerVideo.tsx │ ├── Banner │ │ ├── AlertBanner.tsx │ │ ├── alert_templates.tsx │ │ ├── hooks.tsx │ │ └── index.ts │ ├── Buttons │ │ ├── ButtonStyleLink.tsx │ │ ├── IconButton.tsx │ │ ├── ImageToggleButton.tsx │ │ ├── LinkStyleButton.tsx │ │ ├── TextButton.tsx │ │ └── TooltipButtonStyleLink.tsx │ ├── CanvasWrapper │ │ ├── BackdropToggleButton.tsx │ │ ├── CanvasWrapper.tsx │ │ ├── ChannelToggleButton.tsx │ │ └── index.ts │ ├── CategoricalColorPicker.tsx │ ├── Controls │ │ ├── ColorizeControl │ │ │ └── ColorRampRangeSlider.tsx │ │ ├── ColorizeControls.tsx │ │ ├── DatasetFeatureControls.tsx │ │ └── PlaybackControls.tsx │ ├── Dropdowns │ │ ├── AccessibleDropdown.tsx │ │ ├── ColorRampDropdown.tsx │ │ ├── DropdownItem.tsx │ │ ├── DropdownItemList.tsx │ │ ├── DropdownWithColorPicker.tsx │ │ ├── HelpDropdown.tsx │ │ ├── SelectionDropdown.tsx │ │ ├── StyledSelect.tsx │ │ └── types.ts │ ├── ExpandableList.tsx │ ├── Export.tsx │ ├── Feedback │ │ └── StyledInlineProgress.tsx │ ├── GlossaryPanel.tsx │ ├── Header.tsx │ ├── Inputs │ │ ├── FileInfoCard.tsx │ │ ├── LabeledSlider.tsx │ │ ├── StyledUpload.tsx │ │ └── WrappedColorPicker.tsx │ ├── LoadDatasetButton.tsx │ ├── LoadZipModal.tsx │ ├── LoadingSpinner.tsx │ ├── MessageCard.tsx │ ├── Modals │ │ ├── SmallScreenWarning.tsx │ │ └── StyledModal.tsx │ ├── PlaybackSpeedControl.tsx │ ├── SettingsContainer.tsx │ ├── SpinBox.module.css │ ├── SpinBox.tsx │ ├── Tabs │ │ ├── Annotation │ │ │ ├── AnnotationDisplay │ │ │ │ ├── AnnotationDisplayList.tsx │ │ │ │ ├── AnnotationDisplayTable.tsx │ │ │ │ ├── AnnotationTrackThumbnail.tsx │ │ │ │ ├── ListItems │ │ │ │ │ ├── PlaceholderListItem.tsx │ │ │ │ │ ├── TrackListItem.tsx │ │ │ │ │ └── ValueListItem.tsx │ │ │ │ └── ValueAndTrackList.tsx │ │ │ ├── AnnotationFileInfo.tsx │ │ │ ├── AnnotationImportButton.tsx │ │ │ ├── AnnotationInputPopover.tsx │ │ │ ├── AnnotationModeButton.tsx │ │ │ ├── AnnotationTab.tsx │ │ │ ├── CreateLabelForm.tsx │ │ │ └── LabelEditControls.tsx │ │ ├── CorrelationPlot │ │ │ ├── CorrelationPlotTab.tsx │ │ │ └── correlation_plot_data_utils.ts │ │ ├── Filters │ │ │ └── FeatureThresholdsTab.tsx │ │ ├── ScatterPlot │ │ │ ├── ScatterPlotTab.tsx │ │ │ └── scatter_plot_data_utils.ts │ │ ├── Settings │ │ │ ├── BackdropSettings.tsx │ │ │ ├── ChannelSettingControl.tsx │ │ │ ├── ChannelSettingsControl.tsx │ │ │ ├── ObjectSettings.tsx │ │ │ ├── SettingsTab.tsx │ │ │ ├── TrackPathSettings.tsx │ │ │ ├── VectorFieldSettings.tsx │ │ │ ├── ViewportSettings.tsx │ │ │ ├── constants.ts │ │ │ └── index.tsx │ │ ├── TrackPlot │ │ │ ├── PlotTab.tsx │ │ │ └── PlotWrapper.tsx │ │ └── index.ts │ ├── ToggleCollapse.tsx │ └── Tooltips │ │ ├── CanvasHoverTooltip.tsx │ │ ├── HoverTooltip.tsx │ │ └── TooltipWithSubtitle.tsx ├── constants │ └── index.ts ├── hooks │ ├── index.tsx │ ├── useAnnotations.ts │ ├── useConstructor.ts │ ├── useDebounce.ts │ ├── useJsxText.ts │ ├── useRecentCollections.ts │ ├── useScrollShadow.ts │ └── useShortcutKey.ts ├── main.tsx ├── routes │ ├── ErrorPage.tsx │ ├── LandingPage │ │ ├── LandingPage.tsx │ │ ├── components │ │ │ ├── DatasetList.tsx │ │ │ ├── ProjectCard.tsx │ │ │ └── ProjectList.tsx │ │ ├── constants.tsx │ │ └── index.ts │ ├── gh_404.tsx │ └── index.tsx ├── state │ ├── ViewerState.ts │ ├── index.ts │ ├── selectors.ts │ ├── slices │ │ ├── backdrop_slice.ts │ │ ├── channel_slice.ts │ │ ├── collection_slice.ts │ │ ├── color_ramp_slice.ts │ │ ├── config_slice.ts │ │ ├── dataset_slice.ts │ │ ├── index.ts │ │ ├── scatterplot_slice.ts │ │ ├── threshold_slice.ts │ │ ├── time_slice.ts │ │ └── vector_slice.ts │ ├── types.ts │ └── utils │ │ ├── data_validation.ts │ │ ├── store_io.ts │ │ └── store_utils.ts ├── styles │ ├── AppStyle.tsx │ ├── components.tsx │ ├── cookie-banner.css │ ├── utils.module.css │ └── utils.tsx ├── types │ └── index.tsx ├── utils │ ├── color_utils.ts │ ├── dataset_load_utils.ts │ ├── file_io.ts │ ├── formatting.tsx │ └── gh_routing.ts └── vite-env.d.ts ├── tests ├── CanvasRecorder.test.tsx ├── Collection.test.ts ├── ColorRampDropdown.test.tsx ├── DataCache.test.ts ├── Dataset.test.ts ├── Export.test.tsx ├── SpinBox.test.tsx ├── colorizer │ ├── AnnotationData.test.ts │ └── FilePathResolver.test.ts ├── colors.test.ts ├── constants │ └── index.ts ├── correlation.test.ts ├── data_load_utils.test.ts ├── data_utils.test.ts ├── dataset_load_utils.test.ts ├── formatting.test.ts ├── gh_routing.test.ts ├── math_utils.test.ts ├── scatter_plot_data_utils.test.ts ├── setup.ts ├── state │ ├── ViewerState │ │ ├── backdrop_slice.test.ts │ │ ├── channel_slice.test.ts │ │ ├── color_ramp_slice.test.ts │ │ ├── config_slice.test.ts │ │ ├── dataset_slice.test.ts │ │ ├── scatterplot_slice.test.ts │ │ ├── threshold_slice.test.ts │ │ ├── time_slice.test.ts │ │ ├── utils.ts │ │ └── vector_slice.test.ts │ └── store_io.test.ts ├── url_utils.test.ts └── utils │ └── index.ts ├── tsconfig.json ├── vite.config.js └── vitest.config.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ux_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/ISSUE_TEMPLATE/ux_issue.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/aws-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/workflows/aws-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-public-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/workflows/deploy-public-build.yml -------------------------------------------------------------------------------- /.github/workflows/pr-preview.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/workflows/pr-preview.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-static-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.github/workflows/run-static-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/.prettierrc -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/404.html -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- 1 | Primary authors/package maintainers go here. 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /__mocks__/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/__mocks__/zustand.ts -------------------------------------------------------------------------------- /config/vite.internal-build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/config/vite.internal-build.config.js -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/env.d.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/package.json -------------------------------------------------------------------------------- /public/images/aics-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/public/images/aics-logo.svg -------------------------------------------------------------------------------- /public/images/meta-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/public/images/meta-image.png -------------------------------------------------------------------------------- /src/Viewer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/Viewer.module.css -------------------------------------------------------------------------------- /src/Viewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/Viewer.tsx -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/fonts/Lato-Regular.eot -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/fonts/Lato-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Lato-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/fonts/Lato-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/fonts/index.ts -------------------------------------------------------------------------------- /src/assets/images/AICS-logo-and-name.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/AICS-logo-and-name.svg -------------------------------------------------------------------------------- /src/assets/images/AICS-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/AICS-logo.svg -------------------------------------------------------------------------------- /src/assets/images/dropdown-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/dropdown-arrow.svg -------------------------------------------------------------------------------- /src/assets/images/icon-images-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-images-slash.svg -------------------------------------------------------------------------------- /src/assets/images/icon-images.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-images.svg -------------------------------------------------------------------------------- /src/assets/images/icon-switch-arrows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-switch-arrows.svg -------------------------------------------------------------------------------- /src/assets/images/icon-tag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-tag-add.svg -------------------------------------------------------------------------------- /src/assets/images/icon-tag-slash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-tag-slash.svg -------------------------------------------------------------------------------- /src/assets/images/icon-tag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/icon-tag.svg -------------------------------------------------------------------------------- /src/assets/images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/index.ts -------------------------------------------------------------------------------- /src/assets/images/no-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/no-image.svg -------------------------------------------------------------------------------- /src/assets/images/spin_box-handle-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/spin_box-handle-down.svg -------------------------------------------------------------------------------- /src/assets/images/spin_box-handle-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/images/spin_box-handle-up.svg -------------------------------------------------------------------------------- /src/assets/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/index.ts -------------------------------------------------------------------------------- /src/assets/videos/banner_video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/videos/banner_video.mp4 -------------------------------------------------------------------------------- /src/assets/videos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/assets/videos/index.ts -------------------------------------------------------------------------------- /src/colorizer/AnnotationData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/AnnotationData.ts -------------------------------------------------------------------------------- /src/colorizer/CanvasOverlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/CanvasOverlay.ts -------------------------------------------------------------------------------- /src/colorizer/Collection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/Collection.ts -------------------------------------------------------------------------------- /src/colorizer/ColorRamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/ColorRamp.ts -------------------------------------------------------------------------------- /src/colorizer/ColorizeCanvas2D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/ColorizeCanvas2D.ts -------------------------------------------------------------------------------- /src/colorizer/ColorizeCanvas3D.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/ColorizeCanvas3D.ts -------------------------------------------------------------------------------- /src/colorizer/DataCache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/DataCache.ts -------------------------------------------------------------------------------- /src/colorizer/Dataset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/Dataset.ts -------------------------------------------------------------------------------- /src/colorizer/IInnerRenderCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/IInnerRenderCanvas.ts -------------------------------------------------------------------------------- /src/colorizer/IRenderCanvas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/IRenderCanvas.ts -------------------------------------------------------------------------------- /src/colorizer/Plotting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/Plotting.ts -------------------------------------------------------------------------------- /src/colorizer/TimeControls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/TimeControls.ts -------------------------------------------------------------------------------- /src/colorizer/Track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/Track.ts -------------------------------------------------------------------------------- /src/colorizer/VectorField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/VectorField.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/annotations.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/footer.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/header.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/index.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/insetBox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/insetBox.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/legend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/legend.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/scaleBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/scaleBar.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/elements/timestamp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/elements/timestamp.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/index.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/types.ts -------------------------------------------------------------------------------- /src/colorizer/canvas/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/canvas/utils.ts -------------------------------------------------------------------------------- /src/colorizer/colors/categorical_palettes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/colors/categorical_palettes.ts -------------------------------------------------------------------------------- /src/colorizer/colors/color_ramps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/colors/color_ramps.ts -------------------------------------------------------------------------------- /src/colorizer/colors/glasbey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/colors/glasbey.ts -------------------------------------------------------------------------------- /src/colorizer/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/constants.ts -------------------------------------------------------------------------------- /src/colorizer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/index.ts -------------------------------------------------------------------------------- /src/colorizer/loaders/ILoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/loaders/ILoader.ts -------------------------------------------------------------------------------- /src/colorizer/loaders/ImageFrameLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/loaders/ImageFrameLoader.ts -------------------------------------------------------------------------------- /src/colorizer/loaders/UrlArrayLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/loaders/UrlArrayLoader.ts -------------------------------------------------------------------------------- /src/colorizer/path_resolvers/FilePathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/path_resolvers/FilePathResolver.ts -------------------------------------------------------------------------------- /src/colorizer/path_resolvers/IPathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/path_resolvers/IPathResolver.ts -------------------------------------------------------------------------------- /src/colorizer/path_resolvers/UrlPathResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/path_resolvers/UrlPathResolver.ts -------------------------------------------------------------------------------- /src/colorizer/path_resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/path_resolvers/index.ts -------------------------------------------------------------------------------- /src/colorizer/recorders/CanvasRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/recorders/CanvasRecorder.ts -------------------------------------------------------------------------------- /src/colorizer/recorders/ImageSequenceRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/recorders/ImageSequenceRecorder.ts -------------------------------------------------------------------------------- /src/colorizer/recorders/Mp4VideoRecorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/recorders/Mp4VideoRecorder.ts -------------------------------------------------------------------------------- /src/colorizer/shaders/cellId_RGBA8U.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/shaders/cellId_RGBA8U.frag -------------------------------------------------------------------------------- /src/colorizer/shaders/colorize.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/shaders/colorize.vert -------------------------------------------------------------------------------- /src/colorizer/shaders/colorize_RGBA8U.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/shaders/colorize_RGBA8U.frag -------------------------------------------------------------------------------- /src/colorizer/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/types.ts -------------------------------------------------------------------------------- /src/colorizer/utils/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/analytics.ts -------------------------------------------------------------------------------- /src/colorizer/utils/annotation_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/annotation_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/channels.ts -------------------------------------------------------------------------------- /src/colorizer/utils/collection_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/collection_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/correlation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/correlation.ts -------------------------------------------------------------------------------- /src/colorizer/utils/data_load_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/data_load_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/data_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/data_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/dataset_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/dataset_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/math_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/math_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/texture_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/texture_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/timing_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/timing_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/type_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/type_utils.ts -------------------------------------------------------------------------------- /src/colorizer/utils/url_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/utils/url_utils.ts -------------------------------------------------------------------------------- /src/colorizer/workers/SharedWorkerPool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/workers/SharedWorkerPool.ts -------------------------------------------------------------------------------- /src/colorizer/workers/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/colorizer/workers/worker.ts -------------------------------------------------------------------------------- /src/components/AssetWrappers/BannerVideo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/AssetWrappers/BannerVideo.tsx -------------------------------------------------------------------------------- /src/components/Banner/AlertBanner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Banner/AlertBanner.tsx -------------------------------------------------------------------------------- /src/components/Banner/alert_templates.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Banner/alert_templates.tsx -------------------------------------------------------------------------------- /src/components/Banner/hooks.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Banner/hooks.tsx -------------------------------------------------------------------------------- /src/components/Banner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Banner/index.ts -------------------------------------------------------------------------------- /src/components/Buttons/ButtonStyleLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/ButtonStyleLink.tsx -------------------------------------------------------------------------------- /src/components/Buttons/IconButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/IconButton.tsx -------------------------------------------------------------------------------- /src/components/Buttons/ImageToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/ImageToggleButton.tsx -------------------------------------------------------------------------------- /src/components/Buttons/LinkStyleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/LinkStyleButton.tsx -------------------------------------------------------------------------------- /src/components/Buttons/TextButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/TextButton.tsx -------------------------------------------------------------------------------- /src/components/Buttons/TooltipButtonStyleLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Buttons/TooltipButtonStyleLink.tsx -------------------------------------------------------------------------------- /src/components/CanvasWrapper/BackdropToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/CanvasWrapper/BackdropToggleButton.tsx -------------------------------------------------------------------------------- /src/components/CanvasWrapper/CanvasWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/CanvasWrapper/CanvasWrapper.tsx -------------------------------------------------------------------------------- /src/components/CanvasWrapper/ChannelToggleButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/CanvasWrapper/ChannelToggleButton.tsx -------------------------------------------------------------------------------- /src/components/CanvasWrapper/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/CanvasWrapper/index.ts -------------------------------------------------------------------------------- /src/components/CategoricalColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/CategoricalColorPicker.tsx -------------------------------------------------------------------------------- /src/components/Controls/ColorizeControl/ColorRampRangeSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Controls/ColorizeControl/ColorRampRangeSlider.tsx -------------------------------------------------------------------------------- /src/components/Controls/ColorizeControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Controls/ColorizeControls.tsx -------------------------------------------------------------------------------- /src/components/Controls/DatasetFeatureControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Controls/DatasetFeatureControls.tsx -------------------------------------------------------------------------------- /src/components/Controls/PlaybackControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Controls/PlaybackControls.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/AccessibleDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/AccessibleDropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/ColorRampDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/ColorRampDropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/DropdownItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/DropdownItem.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/DropdownItemList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/DropdownItemList.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/DropdownWithColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/DropdownWithColorPicker.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/HelpDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/HelpDropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/SelectionDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/SelectionDropdown.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/StyledSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/StyledSelect.tsx -------------------------------------------------------------------------------- /src/components/Dropdowns/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Dropdowns/types.ts -------------------------------------------------------------------------------- /src/components/ExpandableList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/ExpandableList.tsx -------------------------------------------------------------------------------- /src/components/Export.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Export.tsx -------------------------------------------------------------------------------- /src/components/Feedback/StyledInlineProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Feedback/StyledInlineProgress.tsx -------------------------------------------------------------------------------- /src/components/GlossaryPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/GlossaryPanel.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/Inputs/FileInfoCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Inputs/FileInfoCard.tsx -------------------------------------------------------------------------------- /src/components/Inputs/LabeledSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Inputs/LabeledSlider.tsx -------------------------------------------------------------------------------- /src/components/Inputs/StyledUpload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Inputs/StyledUpload.tsx -------------------------------------------------------------------------------- /src/components/Inputs/WrappedColorPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Inputs/WrappedColorPicker.tsx -------------------------------------------------------------------------------- /src/components/LoadDatasetButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/LoadDatasetButton.tsx -------------------------------------------------------------------------------- /src/components/LoadZipModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/LoadZipModal.tsx -------------------------------------------------------------------------------- /src/components/LoadingSpinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/LoadingSpinner.tsx -------------------------------------------------------------------------------- /src/components/MessageCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/MessageCard.tsx -------------------------------------------------------------------------------- /src/components/Modals/SmallScreenWarning.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Modals/SmallScreenWarning.tsx -------------------------------------------------------------------------------- /src/components/Modals/StyledModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Modals/StyledModal.tsx -------------------------------------------------------------------------------- /src/components/PlaybackSpeedControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/PlaybackSpeedControl.tsx -------------------------------------------------------------------------------- /src/components/SettingsContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/SettingsContainer.tsx -------------------------------------------------------------------------------- /src/components/SpinBox.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/SpinBox.module.css -------------------------------------------------------------------------------- /src/components/SpinBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/SpinBox.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/AnnotationDisplayList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/AnnotationDisplayList.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/AnnotationDisplayTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/AnnotationDisplayTable.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/AnnotationTrackThumbnail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/AnnotationTrackThumbnail.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/ListItems/PlaceholderListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/ListItems/PlaceholderListItem.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/ListItems/TrackListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/ListItems/TrackListItem.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/ListItems/ValueListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/ListItems/ValueListItem.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationDisplay/ValueAndTrackList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationDisplay/ValueAndTrackList.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationFileInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationFileInfo.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationImportButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationImportButton.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationInputPopover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationInputPopover.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationModeButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationModeButton.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/AnnotationTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/AnnotationTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/CreateLabelForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/CreateLabelForm.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Annotation/LabelEditControls.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Annotation/LabelEditControls.tsx -------------------------------------------------------------------------------- /src/components/Tabs/CorrelationPlot/CorrelationPlotTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/CorrelationPlot/CorrelationPlotTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/CorrelationPlot/correlation_plot_data_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/CorrelationPlot/correlation_plot_data_utils.ts -------------------------------------------------------------------------------- /src/components/Tabs/Filters/FeatureThresholdsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Filters/FeatureThresholdsTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/ScatterPlot/ScatterPlotTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/ScatterPlot/ScatterPlotTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/ScatterPlot/scatter_plot_data_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/ScatterPlot/scatter_plot_data_utils.ts -------------------------------------------------------------------------------- /src/components/Tabs/Settings/BackdropSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/BackdropSettings.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/ChannelSettingControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/ChannelSettingControl.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/ChannelSettingsControl.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/ChannelSettingsControl.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/ObjectSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/ObjectSettings.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/SettingsTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/SettingsTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/TrackPathSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/TrackPathSettings.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/VectorFieldSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/VectorFieldSettings.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/ViewportSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/ViewportSettings.tsx -------------------------------------------------------------------------------- /src/components/Tabs/Settings/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/constants.ts -------------------------------------------------------------------------------- /src/components/Tabs/Settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/Settings/index.tsx -------------------------------------------------------------------------------- /src/components/Tabs/TrackPlot/PlotTab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/TrackPlot/PlotTab.tsx -------------------------------------------------------------------------------- /src/components/Tabs/TrackPlot/PlotWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/TrackPlot/PlotWrapper.tsx -------------------------------------------------------------------------------- /src/components/Tabs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tabs/index.ts -------------------------------------------------------------------------------- /src/components/ToggleCollapse.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/ToggleCollapse.tsx -------------------------------------------------------------------------------- /src/components/Tooltips/CanvasHoverTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tooltips/CanvasHoverTooltip.tsx -------------------------------------------------------------------------------- /src/components/Tooltips/HoverTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tooltips/HoverTooltip.tsx -------------------------------------------------------------------------------- /src/components/Tooltips/TooltipWithSubtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/components/Tooltips/TooltipWithSubtitle.tsx -------------------------------------------------------------------------------- /src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/constants/index.ts -------------------------------------------------------------------------------- /src/hooks/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/index.tsx -------------------------------------------------------------------------------- /src/hooks/useAnnotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useAnnotations.ts -------------------------------------------------------------------------------- /src/hooks/useConstructor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useConstructor.ts -------------------------------------------------------------------------------- /src/hooks/useDebounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useDebounce.ts -------------------------------------------------------------------------------- /src/hooks/useJsxText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useJsxText.ts -------------------------------------------------------------------------------- /src/hooks/useRecentCollections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useRecentCollections.ts -------------------------------------------------------------------------------- /src/hooks/useScrollShadow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useScrollShadow.ts -------------------------------------------------------------------------------- /src/hooks/useShortcutKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/hooks/useShortcutKey.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/routes/ErrorPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/ErrorPage.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/LandingPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/LandingPage.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/components/DatasetList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/components/DatasetList.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/components/ProjectCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/components/ProjectCard.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/components/ProjectList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/components/ProjectList.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/constants.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/constants.tsx -------------------------------------------------------------------------------- /src/routes/LandingPage/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/LandingPage/index.ts -------------------------------------------------------------------------------- /src/routes/gh_404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/gh_404.tsx -------------------------------------------------------------------------------- /src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/routes/index.tsx -------------------------------------------------------------------------------- /src/state/ViewerState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/ViewerState.ts -------------------------------------------------------------------------------- /src/state/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/index.ts -------------------------------------------------------------------------------- /src/state/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/selectors.ts -------------------------------------------------------------------------------- /src/state/slices/backdrop_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/backdrop_slice.ts -------------------------------------------------------------------------------- /src/state/slices/channel_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/channel_slice.ts -------------------------------------------------------------------------------- /src/state/slices/collection_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/collection_slice.ts -------------------------------------------------------------------------------- /src/state/slices/color_ramp_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/color_ramp_slice.ts -------------------------------------------------------------------------------- /src/state/slices/config_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/config_slice.ts -------------------------------------------------------------------------------- /src/state/slices/dataset_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/dataset_slice.ts -------------------------------------------------------------------------------- /src/state/slices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/index.ts -------------------------------------------------------------------------------- /src/state/slices/scatterplot_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/scatterplot_slice.ts -------------------------------------------------------------------------------- /src/state/slices/threshold_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/threshold_slice.ts -------------------------------------------------------------------------------- /src/state/slices/time_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/time_slice.ts -------------------------------------------------------------------------------- /src/state/slices/vector_slice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/slices/vector_slice.ts -------------------------------------------------------------------------------- /src/state/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/types.ts -------------------------------------------------------------------------------- /src/state/utils/data_validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/utils/data_validation.ts -------------------------------------------------------------------------------- /src/state/utils/store_io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/utils/store_io.ts -------------------------------------------------------------------------------- /src/state/utils/store_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/state/utils/store_utils.ts -------------------------------------------------------------------------------- /src/styles/AppStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/styles/AppStyle.tsx -------------------------------------------------------------------------------- /src/styles/components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/styles/components.tsx -------------------------------------------------------------------------------- /src/styles/cookie-banner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/styles/cookie-banner.css -------------------------------------------------------------------------------- /src/styles/utils.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/styles/utils.module.css -------------------------------------------------------------------------------- /src/styles/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/styles/utils.tsx -------------------------------------------------------------------------------- /src/types/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/types/index.tsx -------------------------------------------------------------------------------- /src/utils/color_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/utils/color_utils.ts -------------------------------------------------------------------------------- /src/utils/dataset_load_utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/utils/dataset_load_utils.ts -------------------------------------------------------------------------------- /src/utils/file_io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/utils/file_io.ts -------------------------------------------------------------------------------- /src/utils/formatting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/utils/formatting.tsx -------------------------------------------------------------------------------- /src/utils/gh_routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/utils/gh_routing.ts -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /tests/CanvasRecorder.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/CanvasRecorder.test.tsx -------------------------------------------------------------------------------- /tests/Collection.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/Collection.test.ts -------------------------------------------------------------------------------- /tests/ColorRampDropdown.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/ColorRampDropdown.test.tsx -------------------------------------------------------------------------------- /tests/DataCache.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/DataCache.test.ts -------------------------------------------------------------------------------- /tests/Dataset.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/Dataset.test.ts -------------------------------------------------------------------------------- /tests/Export.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/Export.test.tsx -------------------------------------------------------------------------------- /tests/SpinBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/SpinBox.test.tsx -------------------------------------------------------------------------------- /tests/colorizer/AnnotationData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/colorizer/AnnotationData.test.ts -------------------------------------------------------------------------------- /tests/colorizer/FilePathResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/colorizer/FilePathResolver.test.ts -------------------------------------------------------------------------------- /tests/colors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/colors.test.ts -------------------------------------------------------------------------------- /tests/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/constants/index.ts -------------------------------------------------------------------------------- /tests/correlation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/correlation.test.ts -------------------------------------------------------------------------------- /tests/data_load_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/data_load_utils.test.ts -------------------------------------------------------------------------------- /tests/data_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/data_utils.test.ts -------------------------------------------------------------------------------- /tests/dataset_load_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/dataset_load_utils.test.ts -------------------------------------------------------------------------------- /tests/formatting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/formatting.test.ts -------------------------------------------------------------------------------- /tests/gh_routing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/gh_routing.test.ts -------------------------------------------------------------------------------- /tests/math_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/math_utils.test.ts -------------------------------------------------------------------------------- /tests/scatter_plot_data_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/scatter_plot_data_utils.test.ts -------------------------------------------------------------------------------- /tests/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/setup.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/backdrop_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/backdrop_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/channel_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/channel_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/color_ramp_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/color_ramp_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/config_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/config_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/dataset_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/dataset_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/scatterplot_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/scatterplot_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/threshold_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/threshold_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/time_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/time_slice.test.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/utils.ts -------------------------------------------------------------------------------- /tests/state/ViewerState/vector_slice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/ViewerState/vector_slice.test.ts -------------------------------------------------------------------------------- /tests/state/store_io.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/state/store_io.test.ts -------------------------------------------------------------------------------- /tests/url_utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/url_utils.test.ts -------------------------------------------------------------------------------- /tests/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tests/utils/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/vite.config.js -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allen-cell-animated/timelapse-colorizer/HEAD/vitest.config.js --------------------------------------------------------------------------------