Skip to content

Commit

Permalink
Switch 'deepposekit.annotation' to 'deepposekit.annotate'
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraving committed Sep 28, 2019
1 parent 94f4f04 commit 0da3569
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
Expand Up @@ -19,7 +19,7 @@
import matplotlib.pyplot as plt
from sklearn.cluster import MiniBatchKMeans
from sklearn.utils.validation import check_is_fitted
from deepposekit.annotation.utils.image import check_image_array
from deepposekit.annotate.utils.image import check_image_array


class KMeansSampler(MiniBatchKMeans):
Expand Down
Expand Up @@ -17,6 +17,6 @@

from __future__ import absolute_import

from deepposekit.annotation.gui.Annotator import Annotator
from deepposekit.annotation.gui.Skeleton import Skeleton
from deepposekit.annotation.KMeansSampler import KMeansSampler
from deepposekit.annotate.gui.Annotator import Annotator
from deepposekit.annotate.gui.Skeleton import Skeleton
from deepposekit.annotate.KMeansSampler import KMeansSampler
Expand Up @@ -19,8 +19,8 @@
import h5py
import os

from deepposekit.annotation.gui.GUI import GUI
from deepposekit.annotation.utils import hotkeys as keys
from deepposekit.annotate.gui.GUI import GUI
from deepposekit.annotate.utils import hotkeys as keys

__all__ = ["Annotator"]

Expand Down
Expand Up @@ -20,7 +20,7 @@
import pandas as pd
import matplotlib.pyplot as plt

from deepposekit.annotation.utils import hotkeys as keys
from deepposekit.annotate.utils import hotkeys as keys


def _mouse_click(event, x, y, flags, param):
Expand Down
Expand Up @@ -18,8 +18,8 @@
import numpy as np
import cv2

from deepposekit.annotation.gui.GUI import GUI
from deepposekit.annotation.utils import hotkeys as keys
from deepposekit.annotate.gui.GUI import GUI
from deepposekit.annotate.utils import hotkeys as keys

__all__ = ["Skeleton"]

Expand Down
Expand Up @@ -17,5 +17,5 @@

from __future__ import absolute_import

from deepposekit.annotation.gui.Annotator import Annotator
from deepposekit.annotation.gui.Skeleton import Skeleton
from deepposekit.annotate.gui.Annotator import Annotator
from deepposekit.annotate.gui.Skeleton import Skeleton
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0da3569

Please sign in to comment.