supervisely 6.73.277__py3-none-any.whl → 6.73.278__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of supervisely might be problematic. Click here for more details.
- supervisely/__init__.py +2 -0
- supervisely/annotation/annotation.py +138 -1
- supervisely/convert/__init__.py +12 -56
- supervisely/convert/base_converter.py +12 -1
- supervisely/convert/image/__init__.py +22 -0
- supervisely/convert/image/coco/coco_helper.py +494 -2
- supervisely/convert/image/pascal_voc/pascal_voc_helper.py +417 -11
- supervisely/convert/image/yolo/yolo_helper.py +339 -4
- supervisely/convert/pointcloud/__init__.py +8 -0
- supervisely/convert/pointcloud_episodes/__init__.py +9 -0
- supervisely/convert/video/__init__.py +3 -0
- supervisely/convert/volume/__init__.py +3 -0
- supervisely/nn/training/gui/training_artifacts.py +1 -1
- supervisely/nn/training/train_app.py +3 -2
- supervisely/project/project.py +311 -2
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/METADATA +1 -1
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/RECORD +21 -21
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/LICENSE +0 -0
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/WHEEL +0 -0
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/entry_points.txt +0 -0
- {supervisely-6.73.277.dist-info → supervisely-6.73.278.dist-info}/top_level.txt +0 -0
supervisely/project/project.py
CHANGED
|
@@ -10,7 +10,18 @@ import random
|
|
|
10
10
|
import shutil
|
|
11
11
|
from collections import defaultdict, namedtuple
|
|
12
12
|
from enum import Enum
|
|
13
|
-
from
|
|
13
|
+
from pathlib import Path
|
|
14
|
+
from typing import (
|
|
15
|
+
Callable,
|
|
16
|
+
Dict,
|
|
17
|
+
Generator,
|
|
18
|
+
List,
|
|
19
|
+
Literal,
|
|
20
|
+
NamedTuple,
|
|
21
|
+
Optional,
|
|
22
|
+
Tuple,
|
|
23
|
+
Union,
|
|
24
|
+
)
|
|
14
25
|
|
|
15
26
|
import aiofiles
|
|
16
27
|
import numpy as np
|
|
@@ -20,6 +31,7 @@ import supervisely as sly
|
|
|
20
31
|
from supervisely._utils import (
|
|
21
32
|
abs_url,
|
|
22
33
|
batched,
|
|
34
|
+
generate_free_name,
|
|
23
35
|
get_or_create_event_loop,
|
|
24
36
|
is_development,
|
|
25
37
|
snake_to_human,
|
|
@@ -1469,7 +1481,7 @@ class Dataset(KeyObject):
|
|
|
1469
1481
|
def __iter__(self):
|
|
1470
1482
|
return next(self)
|
|
1471
1483
|
|
|
1472
|
-
def items(self) -> Generator[Tuple[str]]:
|
|
1484
|
+
def items(self) -> Generator[Tuple[str, str, str]]:
|
|
1473
1485
|
"""
|
|
1474
1486
|
This method is used to iterate over dataset items, receiving item name, path to image and path to annotation
|
|
1475
1487
|
json file. It is useful when you need to iterate over dataset items and get paths to images and annotations.
|
|
@@ -1791,6 +1803,162 @@ class Dataset(KeyObject):
|
|
|
1791
1803
|
await self._add_ann_by_type_async(item_name, ann)
|
|
1792
1804
|
await self._add_item_info_async(item_name, item_info)
|
|
1793
1805
|
|
|
1806
|
+
def to_coco(
|
|
1807
|
+
self,
|
|
1808
|
+
meta: ProjectMeta,
|
|
1809
|
+
return_type: Literal["path", "dict"] = "path",
|
|
1810
|
+
dest_dir: Optional[str] = None,
|
|
1811
|
+
copy_images: bool = False,
|
|
1812
|
+
with_captions=False,
|
|
1813
|
+
log_progress: bool = False,
|
|
1814
|
+
progress_cb: Optional[Callable] = None,
|
|
1815
|
+
) -> Tuple[Dict, Union[None, Dict]]:
|
|
1816
|
+
"""
|
|
1817
|
+
Convert Supervisely dataset to COCO format.
|
|
1818
|
+
|
|
1819
|
+
Note: Depending on the `return_type` and `with_captions` parameters, the function returns different values.
|
|
1820
|
+
If `return_type` is "path", the COCO annotation files will be saved to the disk.
|
|
1821
|
+
If `return_type` is "dict", the function returns COCO dataset in dictionary format.
|
|
1822
|
+
If `with_captions` is True, the function returns Tuple (instances and captions).
|
|
1823
|
+
|
|
1824
|
+
:param meta: Project meta information.
|
|
1825
|
+
:type meta: :class:`ProjectMeta<supervisely.project.project_meta.ProjectMeta>`
|
|
1826
|
+
:param return_type: Return type (`path` or `dict`).
|
|
1827
|
+
:type return_type: :class:`str`, optional
|
|
1828
|
+
:param dest_dir: Path to save COCO dataset.
|
|
1829
|
+
:type dest_dir: :class:`str`, optional
|
|
1830
|
+
:param copy_images: If True, copies images to the COCO dataset directory.
|
|
1831
|
+
:type copy_images: :class:`bool`, optional
|
|
1832
|
+
:param with_captions: If True, returns captions
|
|
1833
|
+
:type with_captions: :class:`bool`, optional
|
|
1834
|
+
:param log_progress: If True, log progress.
|
|
1835
|
+
:type log_progress: :class:`str`, optional
|
|
1836
|
+
:param progress_cb: Progress callback.
|
|
1837
|
+
:type progress_cb: :class:`Callable`, optional
|
|
1838
|
+
:return: COCO dataset in dictionary format.
|
|
1839
|
+
:rtype: :class:`dict`
|
|
1840
|
+
|
|
1841
|
+
:Usage example:
|
|
1842
|
+
|
|
1843
|
+
.. code-block:: python
|
|
1844
|
+
|
|
1845
|
+
import supervisely as sly
|
|
1846
|
+
project_path = "/home/admin/work/supervisely/projects/lemons_annotated"
|
|
1847
|
+
project = sly.Project(project_path, sly.OpenMode.READ)
|
|
1848
|
+
|
|
1849
|
+
for ds in project.datasets:
|
|
1850
|
+
dest_dir = "/home/admin/work/supervisely/projects/lemons_annotated/ds1"
|
|
1851
|
+
coco: Tuple[Dict, Dict] = ds.to_coco(project.meta, save=True, dest_dir=dest_dir)
|
|
1852
|
+
"""
|
|
1853
|
+
|
|
1854
|
+
from supervisely.convert import dataset_to_coco
|
|
1855
|
+
|
|
1856
|
+
return dataset_to_coco(
|
|
1857
|
+
self,
|
|
1858
|
+
meta=meta,
|
|
1859
|
+
return_type=return_type,
|
|
1860
|
+
dest_dir=dest_dir,
|
|
1861
|
+
copy_images=copy_images,
|
|
1862
|
+
with_captions=with_captions,
|
|
1863
|
+
log_progress=log_progress,
|
|
1864
|
+
progress_cb=progress_cb,
|
|
1865
|
+
)
|
|
1866
|
+
|
|
1867
|
+
def to_yolo(
|
|
1868
|
+
self,
|
|
1869
|
+
meta: ProjectMeta,
|
|
1870
|
+
dest_dir: Optional[str] = None,
|
|
1871
|
+
task_type: Literal["detection", "segmentation", "pose"] = "detection",
|
|
1872
|
+
log_progress: bool = False,
|
|
1873
|
+
progress_cb: Optional[Callable] = None,
|
|
1874
|
+
):
|
|
1875
|
+
"""
|
|
1876
|
+
Convert Supervisely dataset to YOLO format.
|
|
1877
|
+
|
|
1878
|
+
:param meta: Project meta information.
|
|
1879
|
+
:type meta: :class:`ProjectMeta<supervisely.project.project_meta.ProjectMeta>`
|
|
1880
|
+
:param dest_dir: Path to save YOLO dataset.
|
|
1881
|
+
:type dest_dir: :class:`str`, optional
|
|
1882
|
+
:param task_type: Task type.
|
|
1883
|
+
:type task_type: :class:`str`, optional
|
|
1884
|
+
:param log_progress: If True, log progress.
|
|
1885
|
+
:type log_progress: :class:`str`, optional
|
|
1886
|
+
:param progress_cb: Progress callback.
|
|
1887
|
+
:type progress_cb: :class:`Callable`, optional
|
|
1888
|
+
:return: YOLO dataset in dictionary format.
|
|
1889
|
+
:rtype: :class:`dict`
|
|
1890
|
+
|
|
1891
|
+
:Usage example:
|
|
1892
|
+
|
|
1893
|
+
.. code-block:: python
|
|
1894
|
+
|
|
1895
|
+
import supervisely as sly
|
|
1896
|
+
project_path = "/home/admin/work/supervisely/projects/lemons_annotated"
|
|
1897
|
+
project = sly.Project(project_path, sly.OpenMode.READ)
|
|
1898
|
+
|
|
1899
|
+
for ds in project.datasets:
|
|
1900
|
+
dest_dir = "/home/admin/work/supervisely/projects/lemons_annotated/ds1"
|
|
1901
|
+
ds.to_yolo(project.meta, dest_dir=dest_dir)
|
|
1902
|
+
"""
|
|
1903
|
+
|
|
1904
|
+
from supervisely.convert import dataset_to_yolo
|
|
1905
|
+
|
|
1906
|
+
return dataset_to_yolo(
|
|
1907
|
+
self,
|
|
1908
|
+
meta=meta,
|
|
1909
|
+
dest_dir=dest_dir,
|
|
1910
|
+
task_type=task_type,
|
|
1911
|
+
log_progress=log_progress,
|
|
1912
|
+
progress_cb=progress_cb,
|
|
1913
|
+
)
|
|
1914
|
+
|
|
1915
|
+
def to_pascal_voc(
|
|
1916
|
+
self,
|
|
1917
|
+
meta: ProjectMeta,
|
|
1918
|
+
dest_dir: Optional[str] = None,
|
|
1919
|
+
train_val_split_coef: float = 0.8,
|
|
1920
|
+
log_progress: bool = False,
|
|
1921
|
+
progress_cb: Optional[Union[Callable, tqdm]] = None,
|
|
1922
|
+
) -> Tuple[Dict, Union[None, Dict]]:
|
|
1923
|
+
"""
|
|
1924
|
+
Convert Supervisely dataset to Pascal VOC format.
|
|
1925
|
+
|
|
1926
|
+
:param meta: Project meta information.
|
|
1927
|
+
:type meta: :class:`ProjectMeta<supervisely.project.project_meta.ProjectMeta>`
|
|
1928
|
+
:param dest_dir: Destination directory.
|
|
1929
|
+
:type dest_dir: :class:`str`, optional
|
|
1930
|
+
:param train_val_split_coef: Coefficient for splitting images into train and validation sets.
|
|
1931
|
+
:type train_val_split_coef: :class:`float`, optional
|
|
1932
|
+
:param log_progress: If True, log progress.
|
|
1933
|
+
:type log_progress: :class:`str`, optional
|
|
1934
|
+
:param progress_cb: Progress callback.
|
|
1935
|
+
:type progress_cb: :class:`Callable`, optional
|
|
1936
|
+
:return: None
|
|
1937
|
+
:rtype: NoneType
|
|
1938
|
+
|
|
1939
|
+
:Usage example:
|
|
1940
|
+
|
|
1941
|
+
.. code-block:: python
|
|
1942
|
+
|
|
1943
|
+
import supervisely as sly
|
|
1944
|
+
project_path = "/home/admin/work/supervisely/projects/lemons_annotated"
|
|
1945
|
+
project = sly.Project(project_path, sly.OpenMode.READ)
|
|
1946
|
+
|
|
1947
|
+
for ds in project.datasets:
|
|
1948
|
+
dest_dir = "/home/admin/work/supervisely/projects/lemons_annotated/ds1"
|
|
1949
|
+
ds.to_pascal_voc(project.meta, dest_dir=dest_dir)
|
|
1950
|
+
"""
|
|
1951
|
+
from supervisely.convert import dataset_to_pascal_voc
|
|
1952
|
+
|
|
1953
|
+
dataset_to_pascal_voc(
|
|
1954
|
+
self,
|
|
1955
|
+
meta=meta,
|
|
1956
|
+
dest_dir=dest_dir,
|
|
1957
|
+
train_val_split_coef=train_val_split_coef,
|
|
1958
|
+
log_progress=log_progress,
|
|
1959
|
+
progress_cb=progress_cb,
|
|
1960
|
+
)
|
|
1961
|
+
|
|
1794
1962
|
|
|
1795
1963
|
class Project:
|
|
1796
1964
|
"""
|
|
@@ -3516,6 +3684,147 @@ class Project:
|
|
|
3516
3684
|
resume_download=resume_download,
|
|
3517
3685
|
)
|
|
3518
3686
|
|
|
3687
|
+
def to_coco(
|
|
3688
|
+
self,
|
|
3689
|
+
dest_dir: Optional[str] = None,
|
|
3690
|
+
copy_images: bool = False,
|
|
3691
|
+
with_captions: bool = False,
|
|
3692
|
+
log_progress: bool = True,
|
|
3693
|
+
progress_cb: Optional[Callable] = None,
|
|
3694
|
+
) -> None:
|
|
3695
|
+
"""
|
|
3696
|
+
Convert Supervisely project to COCO format.
|
|
3697
|
+
|
|
3698
|
+
:param dest_dir: Destination directory.
|
|
3699
|
+
:type dest_dir: :class:`str`, optional
|
|
3700
|
+
:param copy_images: Copy images to the destination directory.
|
|
3701
|
+
:type copy_images: :class:`bool`
|
|
3702
|
+
:param with_captions: Return captions for images.
|
|
3703
|
+
:type with_captions: :class:`bool`
|
|
3704
|
+
:param log_progress: Show uploading progress bar.
|
|
3705
|
+
:type log_progress: :class:`bool`
|
|
3706
|
+
:param progress_cb: Function for tracking conversion progress (for all items in the project).
|
|
3707
|
+
:type progress_cb: callable, optional
|
|
3708
|
+
:return: None
|
|
3709
|
+
:rtype: NoneType
|
|
3710
|
+
|
|
3711
|
+
:Usage example:
|
|
3712
|
+
|
|
3713
|
+
.. code-block:: python
|
|
3714
|
+
|
|
3715
|
+
import supervisely as sly
|
|
3716
|
+
|
|
3717
|
+
# Local folder with Project
|
|
3718
|
+
project_directory = "/home/admin/work/supervisely/source/project"
|
|
3719
|
+
|
|
3720
|
+
# Convert Project to COCO format
|
|
3721
|
+
sly.Project(project_directory).to_coco(log_progress=True)
|
|
3722
|
+
# or
|
|
3723
|
+
from supervisely.convert import to_coco
|
|
3724
|
+
to_coco(project_directory, dest_dir="./coco_project")
|
|
3725
|
+
"""
|
|
3726
|
+
from supervisely.convert import project_to_coco
|
|
3727
|
+
|
|
3728
|
+
project_to_coco(
|
|
3729
|
+
project=self,
|
|
3730
|
+
dest_dir=dest_dir,
|
|
3731
|
+
copy_images=copy_images,
|
|
3732
|
+
with_captions=with_captions,
|
|
3733
|
+
log_progress=log_progress,
|
|
3734
|
+
progress_cb=progress_cb,
|
|
3735
|
+
)
|
|
3736
|
+
|
|
3737
|
+
def to_yolo(
|
|
3738
|
+
self,
|
|
3739
|
+
dest_dir: Optional[str] = None,
|
|
3740
|
+
task_type: Literal["detection", "segmentation", "pose"] = "detection",
|
|
3741
|
+
log_progress: bool = True,
|
|
3742
|
+
progress_cb: Optional[Callable] = None,
|
|
3743
|
+
) -> None:
|
|
3744
|
+
"""
|
|
3745
|
+
Convert Supervisely project to YOLO format.
|
|
3746
|
+
|
|
3747
|
+
:param dest_dir: Destination directory.
|
|
3748
|
+
:type dest_dir: :class:`str`, optional
|
|
3749
|
+
:param log_progress: Show uploading progress bar.
|
|
3750
|
+
:type log_progress: :class:`bool`
|
|
3751
|
+
:param progress_cb: Function for tracking conversion progress (for all items in the project).
|
|
3752
|
+
:type progress_cb: callable, optional
|
|
3753
|
+
:return: None
|
|
3754
|
+
:rtype: NoneType
|
|
3755
|
+
|
|
3756
|
+
:Usage example:
|
|
3757
|
+
|
|
3758
|
+
.. code-block:: python
|
|
3759
|
+
|
|
3760
|
+
import supervisely as sly
|
|
3761
|
+
|
|
3762
|
+
# Local folder with Project
|
|
3763
|
+
project_directory = "/home/admin/work/supervisely/source/project"
|
|
3764
|
+
|
|
3765
|
+
# Convert Project to YOLO format
|
|
3766
|
+
sly.Project(project_directory).to_yolo(log_progress=True)
|
|
3767
|
+
# or
|
|
3768
|
+
from supervisely.convert import to_yolo
|
|
3769
|
+
to_yolo(project_directory, dest_dir="./yolo_project")
|
|
3770
|
+
"""
|
|
3771
|
+
|
|
3772
|
+
from supervisely.convert import project_to_yolo
|
|
3773
|
+
|
|
3774
|
+
project_to_yolo(
|
|
3775
|
+
project=self,
|
|
3776
|
+
dest_dir=dest_dir,
|
|
3777
|
+
task_type=task_type,
|
|
3778
|
+
log_progress=log_progress,
|
|
3779
|
+
progress_cb=progress_cb,
|
|
3780
|
+
)
|
|
3781
|
+
|
|
3782
|
+
def to_pascal_voc(
|
|
3783
|
+
self,
|
|
3784
|
+
dest_dir: Optional[str] = None,
|
|
3785
|
+
train_val_split_coef: float = 0.8,
|
|
3786
|
+
log_progress: bool = True,
|
|
3787
|
+
progress_cb: Optional[Union[tqdm, Callable]] = None,
|
|
3788
|
+
) -> None:
|
|
3789
|
+
"""
|
|
3790
|
+
Convert Supervisely project to Pascal VOC format.
|
|
3791
|
+
|
|
3792
|
+
:param dest_dir: Destination directory.
|
|
3793
|
+
:type dest_dir: :class:`str`, optional
|
|
3794
|
+
:param train_val_split_coef: Coefficient for splitting images into train and validation sets.
|
|
3795
|
+
:type train_val_split_coef: :class:`float`, optional
|
|
3796
|
+
:param log_progress: Show uploading progress bar.
|
|
3797
|
+
:type log_progress: :class:`bool`
|
|
3798
|
+
:param progress_cb: Function for tracking conversion progress (for all items in the project).
|
|
3799
|
+
:type progress_cb: callable, optional
|
|
3800
|
+
:return: None
|
|
3801
|
+
:rtype: NoneType
|
|
3802
|
+
|
|
3803
|
+
:Usage example:
|
|
3804
|
+
|
|
3805
|
+
.. code-block:: python
|
|
3806
|
+
|
|
3807
|
+
import supervisely as sly
|
|
3808
|
+
|
|
3809
|
+
# Local folder with Project
|
|
3810
|
+
project_directory = "/home/admin/work/supervisely/source/project"
|
|
3811
|
+
|
|
3812
|
+
# Convert Project to YOLO format
|
|
3813
|
+
sly.Project(project_directory).to_pascal_voc(log_progress=True)
|
|
3814
|
+
# or
|
|
3815
|
+
from supervisely.convert import to_pascal_voc
|
|
3816
|
+
to_pascal_voc(project_directory, dest_dir="./pascal_voc_project")
|
|
3817
|
+
"""
|
|
3818
|
+
from supervisely.convert import project_to_pascal_voc
|
|
3819
|
+
|
|
3820
|
+
project_to_pascal_voc(
|
|
3821
|
+
project=self,
|
|
3822
|
+
dest_dir=dest_dir,
|
|
3823
|
+
train_val_split_coef=train_val_split_coef,
|
|
3824
|
+
log_progress=log_progress,
|
|
3825
|
+
progress_cb=progress_cb,
|
|
3826
|
+
)
|
|
3827
|
+
|
|
3519
3828
|
|
|
3520
3829
|
def read_single_project(
|
|
3521
3830
|
dir: str,
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
supervisely/README.md,sha256=XM-DiMC6To3I9RjQZ0c61905EFRR_jnCUx2q3uNR-X8,3331
|
|
2
|
-
supervisely/__init__.py,sha256=
|
|
2
|
+
supervisely/__init__.py,sha256=bvuMHtPSeGkhj3vVvcVtyhVcMqI5OEBPflLcy8HIqN8,10833
|
|
3
3
|
supervisely/_utils.py,sha256=I4nZ0L7NS6144r-CQ2VJvLeUJZ1bCi4pYXH4Gxo3-D4,15763
|
|
4
4
|
supervisely/function_wrapper.py,sha256=R5YajTQ0GnRp2vtjwfC9hINkzQc0JiyGsu8TER373xY,1912
|
|
5
5
|
supervisely/sly_logger.py,sha256=LG1wTyyctyEKuCuKM2IKf_SMPH7BzkTsFdO-0tnorzg,6225
|
|
6
6
|
supervisely/tiny_timer.py,sha256=hkpe_7FE6bsKL79blSs7WBaktuPavEVu67IpEPrfmjE,183
|
|
7
7
|
supervisely/annotation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
-
supervisely/annotation/annotation.py,sha256=
|
|
8
|
+
supervisely/annotation/annotation.py,sha256=Kdn3HRpx7ie6vkDaQFXrg597nOidZ6FMN-oXpDk4nyI,114289
|
|
9
9
|
supervisely/annotation/annotation_transforms.py,sha256=TlVy_gUbM-XH6GbLpZPrAi6pMIGTr7Ow02iSKOSTa-I,9582
|
|
10
10
|
supervisely/annotation/json_geometries_map.py,sha256=nL6AmMhFy02fw9ryBm75plKyOkDh61QdOToSuLAcz_Q,1659
|
|
11
11
|
supervisely/annotation/label.py,sha256=NpHZ5o2H6dI4KiII22o2HpiLXG1yekh-bEy8WvI2Ljg,37498
|
|
@@ -560,10 +560,10 @@ supervisely/cli/teamfiles/teamfiles_upload.py,sha256=xnsW2rvdq1e-KGjF1tMBu7Oxh3n
|
|
|
560
560
|
supervisely/collection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
561
561
|
supervisely/collection/key_indexed_collection.py,sha256=x2UVlkprspWhhae9oLUzjTWBoIouiWY9UQSS_MozfH0,37643
|
|
562
562
|
supervisely/collection/str_enum.py,sha256=Zp29yFGvnxC6oJRYNNlXhO2lTSdsriU1wiGHj6ahEJE,1250
|
|
563
|
-
supervisely/convert/__init__.py,sha256=
|
|
564
|
-
supervisely/convert/base_converter.py,sha256=
|
|
563
|
+
supervisely/convert/__init__.py,sha256=pF1bOrg8SzkdFn90AWGRmVa9OQrHABY0gTlgurJ86Tw,962
|
|
564
|
+
supervisely/convert/base_converter.py,sha256=NHbOYxfZ8Yfs6qJz8zuR5kzKSlkfQs9-fpuafwdAGnA,18583
|
|
565
565
|
supervisely/convert/converter.py,sha256=tWxTDfFv7hwzQhUQrBxzfr6WP8FUGFX_ewg5T2HbUYo,8959
|
|
566
|
-
supervisely/convert/image/__init__.py,sha256=
|
|
566
|
+
supervisely/convert/image/__init__.py,sha256=JEuyaBiiyiYmEUYqdn8Mog5FVXpz0H1zFubKkOOm73I,1395
|
|
567
567
|
supervisely/convert/image/image_converter.py,sha256=r-qdhuwOsk727mXIM26ucQhkoIKigu1M0BF-tw9IfGg,10321
|
|
568
568
|
supervisely/convert/image/image_helper.py,sha256=fdV0edQD6hVGQ8TXn2JGDzsnrAXPDMacHBQsApzOME8,3677
|
|
569
569
|
supervisely/convert/image/cityscapes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -572,7 +572,7 @@ supervisely/convert/image/cityscapes/cityscapes_helper.py,sha256=in5nR7__q_u5dCk
|
|
|
572
572
|
supervisely/convert/image/coco/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
573
573
|
supervisely/convert/image/coco/coco_anntotation_converter.py,sha256=79rhAy_nkudxEgJDLW0BziUz808-fSqTOnlUeN-kvn8,6603
|
|
574
574
|
supervisely/convert/image/coco/coco_converter.py,sha256=7czTd4I1we_HxEc9diQiXPC2pXAtnoqSnFSVCtNOmP4,5431
|
|
575
|
-
supervisely/convert/image/coco/coco_helper.py,sha256=
|
|
575
|
+
supervisely/convert/image/coco/coco_helper.py,sha256=dUk5vCsIxeZDbpjs8_oviPGQDW7CosjqbnjwaJQd0mU,32849
|
|
576
576
|
supervisely/convert/image/csv/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
577
|
supervisely/convert/image/csv/csv_converter.py,sha256=iLyc2PAVtlsAq7blnGH4iS1_D7Ai6-4UsdI_RlDVB9Q,11677
|
|
578
578
|
supervisely/convert/image/csv/csv_helper.py,sha256=-nR192IfMU0vTlNRoKXu5FS6tTs9fENqySyeKKyemRs,8409
|
|
@@ -597,7 +597,7 @@ supervisely/convert/image/multispectral/__init__.py,sha256=47DEQpj8HBSa-_TImW-5J
|
|
|
597
597
|
supervisely/convert/image/multispectral/multispectral_converter.py,sha256=T3etYVNI0AUUrQsQhxw_r85NthXrqhqmdZQfz8kUY0g,5194
|
|
598
598
|
supervisely/convert/image/pascal_voc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
599
|
supervisely/convert/image/pascal_voc/pascal_voc_converter.py,sha256=h5Q3qW4riUCXPo5535wuKGurlLvPfKbWGML0RGnMxyg,7648
|
|
600
|
-
supervisely/convert/image/pascal_voc/pascal_voc_helper.py,sha256=
|
|
600
|
+
supervisely/convert/image/pascal_voc/pascal_voc_helper.py,sha256=j-ybuBG4bWQVPSAGTxTgNrBxHFXxnroAzTapngADqfI,24011
|
|
601
601
|
supervisely/convert/image/pdf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
602
602
|
supervisely/convert/image/pdf/pdf_converter.py,sha256=LKvVng9jPp0cSIjYEjKLOb48wtdOdB7LXS2gjmOdZhE,2442
|
|
603
603
|
supervisely/convert/image/pdf/pdf_helper.py,sha256=IDwLEvsVy8lu-KC1lXvSRkZZ9BCC6ylebnNEtLQU5L4,1288
|
|
@@ -607,8 +607,8 @@ supervisely/convert/image/sly/sly_image_converter.py,sha256=097ijLa_62ZBu0elRx0x
|
|
|
607
607
|
supervisely/convert/image/sly/sly_image_helper.py,sha256=5Ri8fKb5dzh5b3v8AJ5u8xVFOQfAtoWqZ7HktPsCjTI,7373
|
|
608
608
|
supervisely/convert/image/yolo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
609
609
|
supervisely/convert/image/yolo/yolo_converter.py,sha256=cg5___X5MzvR-rZbNLmaKtr0MdRnyqtEzbBq5UBnYZ0,11171
|
|
610
|
-
supervisely/convert/image/yolo/yolo_helper.py,sha256=
|
|
611
|
-
supervisely/convert/pointcloud/__init__.py,sha256=
|
|
610
|
+
supervisely/convert/image/yolo/yolo_helper.py,sha256=IwyBMZE_3eblsHhw8egeZUR9h_NciwjrxvVLNuZbxY4,19194
|
|
611
|
+
supervisely/convert/pointcloud/__init__.py,sha256=WPeIpPoTWDIKAa0lF6t2SMUhFNZ0l-vKujf6yD6w7SA,589
|
|
612
612
|
supervisely/convert/pointcloud/pointcloud_converter.py,sha256=yCCpzm7GrvL6WT4lNesvtYWWwdO3DO32JIOBBSSQgSA,7130
|
|
613
613
|
supervisely/convert/pointcloud/bag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
614
614
|
supervisely/convert/pointcloud/bag/bag_converter.py,sha256=WWd6A2hS7H4MRgtLdJ-yYgmNU-Wk2eycl6LTTJM2GKQ,11391
|
|
@@ -630,7 +630,7 @@ supervisely/convert/pointcloud/ply/ply_helper.py,sha256=YfLiV9m6a4NNEMs0J32dmMTL
|
|
|
630
630
|
supervisely/convert/pointcloud/sly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
631
631
|
supervisely/convert/pointcloud/sly/sly_pointcloud_converter.py,sha256=r56Rwil-55cRnd0sIePFGrf_xXa-lKQSfwhEUrjOquk,5070
|
|
632
632
|
supervisely/convert/pointcloud/sly/sly_pointcloud_helper.py,sha256=kOluL97FfCFfIvnUE_FeN8iQLMlwdiMR5gayorOGDXw,3968
|
|
633
|
-
supervisely/convert/pointcloud_episodes/__init__.py,sha256=
|
|
633
|
+
supervisely/convert/pointcloud_episodes/__init__.py,sha256=tzrN8kKCpa-0PNp6s1uVIoGse_VKGb45KzCCUSYlH5Y,457
|
|
634
634
|
supervisely/convert/pointcloud_episodes/pointcloud_episodes_converter.py,sha256=qULUzO96BvWgNVmyxSQ0pUPBPG3WHgUJuK_U7Z8NM-g,9428
|
|
635
635
|
supervisely/convert/pointcloud_episodes/bag/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
636
636
|
supervisely/convert/pointcloud_episodes/bag/bag_converter.py,sha256=jzWKXoFUWu11d5WlPfT1hphCubYpq_lhQZmhh07xZdQ,1659
|
|
@@ -642,7 +642,7 @@ supervisely/convert/pointcloud_episodes/nuscenes_conv/nuscenes_helper.py,sha256=
|
|
|
642
642
|
supervisely/convert/pointcloud_episodes/sly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
643
643
|
supervisely/convert/pointcloud_episodes/sly/sly_pointcloud_episodes_converter.py,sha256=fSEGxuTtFTAOLNBAZncOxw9PVALBOtB7yZ8qTCaET7w,6102
|
|
644
644
|
supervisely/convert/pointcloud_episodes/sly/sly_pointcloud_episodes_helper.py,sha256=h4WvNH6cEHtjxxhCnU7Hs2vkyJMye0qwabqXNYVTywE,3570
|
|
645
|
-
supervisely/convert/video/__init__.py,sha256=
|
|
645
|
+
supervisely/convert/video/__init__.py,sha256=8T99u_2rurKksx24aNQZf8b_TPFEiGViSDPzCqjDBfU,157
|
|
646
646
|
supervisely/convert/video/video_converter.py,sha256=f-b6FexBjXw9xWv5w8lxlNxCh4FvacNolX-WQDibWFs,11338
|
|
647
647
|
supervisely/convert/video/davis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
648
648
|
supervisely/convert/video/davis/davis_converter.py,sha256=zaPsJdN6AvyPT7fVnswuPbgrz5T-X2RFbHEdkuMhWGk,415
|
|
@@ -651,7 +651,7 @@ supervisely/convert/video/mot/mot_converter.py,sha256=wXbv-9Psc2uVnhzHuOt5VnRIvS
|
|
|
651
651
|
supervisely/convert/video/sly/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
652
652
|
supervisely/convert/video/sly/sly_video_converter.py,sha256=S2qif7JFxqIi9VN_ez_iBtoJXpG9W6Ky2k5Er3-DtUo,4418
|
|
653
653
|
supervisely/convert/video/sly/sly_video_helper.py,sha256=D8PgoXpi0y3z-VEqvBLDf_gSUQ2hTL3irrfJyGhaV0Y,6758
|
|
654
|
-
supervisely/convert/volume/__init__.py,sha256=
|
|
654
|
+
supervisely/convert/volume/__init__.py,sha256=ZXV1GwQlvKY7sZroUU-jiMTkgngk1aimh51nw1onzuc,168
|
|
655
655
|
supervisely/convert/volume/volume_converter.py,sha256=3jpt2Yn_G4FSP_vHFsJHQfYNQpT7q6ar_sRyr_xrPnA,5335
|
|
656
656
|
supervisely/convert/volume/dicom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
657
657
|
supervisely/convert/volume/dicom/dicom_converter.py,sha256=__QP8fMAaq_BdWFYh1_nAYT2gpY1WwZzdlDj39YwHhw,3195
|
|
@@ -968,7 +968,7 @@ supervisely/nn/tracker/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
968
968
|
supervisely/nn/tracker/utils/gmc.py,sha256=3JX8979H3NA-YHNaRQyj9Z-xb9qtyMittPEjGw8y2Jo,11557
|
|
969
969
|
supervisely/nn/tracker/utils/kalman_filter.py,sha256=eSFmCjM0mikHCAFvj-KCVzw-0Jxpoc3Cfc2NWEjJC1Q,17268
|
|
970
970
|
supervisely/nn/training/__init__.py,sha256=gY4PCykJ-42MWKsqb9kl-skemKa8yB6t_fb5kzqR66U,111
|
|
971
|
-
supervisely/nn/training/train_app.py,sha256=
|
|
971
|
+
supervisely/nn/training/train_app.py,sha256=ropUF_M9RfijQ3XheqEtYl0Soix-69CgZeOnYiCIuI4,95088
|
|
972
972
|
supervisely/nn/training/gui/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
973
973
|
supervisely/nn/training/gui/classes_selector.py,sha256=8UgzA4aogOAr1s42smwEcDbgaBj_i0JLhjwlZ9bFdIA,3772
|
|
974
974
|
supervisely/nn/training/gui/gui.py,sha256=nj4EVppoV9ZjLN0rVO0GKxmI56d6Qpp0qwnJJ6srT6w,23712
|
|
@@ -976,7 +976,7 @@ supervisely/nn/training/gui/hyperparameters_selector.py,sha256=2qryuBss0bLcZJV8P
|
|
|
976
976
|
supervisely/nn/training/gui/input_selector.py,sha256=Jp9PnVVADv1fhndPuZdMlKuzWTOBQZogrOks5dwATlc,2179
|
|
977
977
|
supervisely/nn/training/gui/model_selector.py,sha256=QTFHMf-8-rREYPk64QKoRvE4zKPC8V6tcP4H4N6nyt0,4082
|
|
978
978
|
supervisely/nn/training/gui/train_val_splits_selector.py,sha256=MLryFD2Tj_RobkFzZOeQXzXpch0eGiVFisq3FGA3dFg,8549
|
|
979
|
-
supervisely/nn/training/gui/training_artifacts.py,sha256
|
|
979
|
+
supervisely/nn/training/gui/training_artifacts.py,sha256=UpKI68S0h_nT_CEEKxBi1oeRsYVnocxRZZD4kUEnQ80,9584
|
|
980
980
|
supervisely/nn/training/gui/training_logs.py,sha256=1CBqnL0l5kiZVaegJ-NLgOVI1T4EDB_rLAtumuw18Jo,3222
|
|
981
981
|
supervisely/nn/training/gui/training_process.py,sha256=wqlwt1cHG-HoVEOotDiBjp9YTTIbeMr1bHY2zVRaNH8,3071
|
|
982
982
|
supervisely/nn/training/gui/utils.py,sha256=Bi7-BRsAqN7fUkhd7rXVEAqsxhBdIZ2MrrJtrNqVf8I,3905
|
|
@@ -1008,7 +1008,7 @@ supervisely/project/data_version.py,sha256=nknaWJSUCwoDyNG9_d1KA-GjzidhV9zd9Cn8c
|
|
|
1008
1008
|
supervisely/project/download.py,sha256=zb8sb4XZ6Qi3CP7fmtLRUAYzaxs_W0WnOfe2x3ZVRMs,24639
|
|
1009
1009
|
supervisely/project/pointcloud_episode_project.py,sha256=yiWdNBQiI6f1O9sr1pg8JHW6O-w3XUB1rikJNn3Oung,41866
|
|
1010
1010
|
supervisely/project/pointcloud_project.py,sha256=Kx1Vaes-krwG3BiRRtHRLQxb9G5m5bTHPN9IzRqmNWo,49399
|
|
1011
|
-
supervisely/project/project.py,sha256=
|
|
1011
|
+
supervisely/project/project.py,sha256=69EDmG1Q39xssa9w3SVlbQFOa8b_RmcKpel43H6KWdY,199973
|
|
1012
1012
|
supervisely/project/project_meta.py,sha256=26s8IiHC5Pg8B1AQi6_CrsWteioJP2in00cRNe8QlW0,51423
|
|
1013
1013
|
supervisely/project/project_settings.py,sha256=NLThzU_DCynOK6hkHhVdFyezwprn9UqlnrLDe_3qhkY,9347
|
|
1014
1014
|
supervisely/project/project_type.py,sha256=_3RqW2CnDBKFOvSIrQT1RJQaiHirs34_jiQS8CkwCpo,530
|
|
@@ -1070,9 +1070,9 @@ supervisely/worker_proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
1070
1070
|
supervisely/worker_proto/worker_api_pb2.py,sha256=VQfi5JRBHs2pFCK1snec3JECgGnua3Xjqw_-b3aFxuM,59142
|
|
1071
1071
|
supervisely/worker_proto/worker_api_pb2_grpc.py,sha256=3BwQXOaP9qpdi0Dt9EKG--Lm8KGN0C5AgmUfRv77_Jk,28940
|
|
1072
1072
|
supervisely_lib/__init__.py,sha256=7-3QnN8Zf0wj8NCr2oJmqoQWMKKPKTECvjH9pd2S5vY,159
|
|
1073
|
-
supervisely-6.73.
|
|
1074
|
-
supervisely-6.73.
|
|
1075
|
-
supervisely-6.73.
|
|
1076
|
-
supervisely-6.73.
|
|
1077
|
-
supervisely-6.73.
|
|
1078
|
-
supervisely-6.73.
|
|
1073
|
+
supervisely-6.73.278.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
1074
|
+
supervisely-6.73.278.dist-info/METADATA,sha256=hb6AM2qZI9n04Q_wTnLDxK9HzaYVWV1LK2Cp8hBcy7o,33573
|
|
1075
|
+
supervisely-6.73.278.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
1076
|
+
supervisely-6.73.278.dist-info/entry_points.txt,sha256=U96-5Hxrp2ApRjnCoUiUhWMqijqh8zLR03sEhWtAcms,102
|
|
1077
|
+
supervisely-6.73.278.dist-info/top_level.txt,sha256=kcFVwb7SXtfqZifrZaSE3owHExX4gcNYe7Q2uoby084,28
|
|
1078
|
+
supervisely-6.73.278.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|