Skip to content

Commit

Permalink
WIP: renew ai job modal
Browse files Browse the repository at this point in the history
  • Loading branch information
knollengewaechs committed Sep 29, 2023
1 parent 715f3df commit 5640d14
Show file tree
Hide file tree
Showing 11 changed files with 744 additions and 45 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import {
BoundingBoxSelection,
getReadableNameOfVolumeLayer,
MagSlider,
} from "oxalis/view/right-border-tabs/starting_job_modals";
} from "oxalis/view/action-bar/starting_job_modals";
import { getUserBoundingBoxesFromState } from "oxalis/model/accessors/tracing_accessor";
import {
getVolumeTracingById,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { clamp, computeArrayFromBoundingBox, rgbToHex } from "libs/utils";
import { getBaseSegmentationName } from "oxalis/view/right-border-tabs/segments_tab/segments_view_helper";
import { V3 } from "libs/mjs";
import { ResolutionInfo } from "oxalis/model/helpers/resolution_info";
import { isBoundingBoxExportable } from "../action-bar/download_modal_view";
import { isBoundingBoxExportable } from "./download_modal_view";
import features from "features";

const { ThinSpace } = Unicode;
Expand Down Expand Up @@ -538,6 +538,16 @@ export function NucleiSegmentationModal({ handleClose }: Props) {
}
export function NeuronSegmentationModal({ handleClose }: Props) {
const dataset = useSelector((state: OxalisState) => state.dataset);
return (
<Modal
title={
<>
<i className="fas fa-magic" />
Automated Analysis with WEBKNOSSOS
</>
}
></Modal>
);
return (
<StartingJobModal
handleClose={handleClose}
Expand Down
Loading

0 comments on commit 5640d14

Please sign in to comment.