supervisely
supervisely copied to clipboard
Supervisely SDK for Python - convenient way to automate, customize and extend Supervisely Platform for your computer vision task
# Patching CVE-2007-4559 Hi, we are security researchers from the Advanced Research Center at [Trellix](https://www.trellix.com). We have began a campaign to patch a widespread bug named CVE-2007-4559. CVE-2007-4559 is a...
Warning! Monkeypatching! Needs discuss.
Usage example: ```python import supervisely as sly api = sly.Api.from_env() example_image = "example.jpg" img: np.ndarray = sly.image.read(example_image) img_bytes: bytes = sly.image.write_bytes(img, sly.fs.get_file_ext(example_image)) dataset_id = 123 image_info = api.image.upload_bytes(dataset_id, "example.jpg", img_bytes)...