diff --git a/.github/ISSUE_TEMPLATE/add-a-company-as-a-user-of-albumentations.yaml b/.github/ISSUE_TEMPLATE/add-a-company-as-a-user-of-albumentations.yaml deleted file mode 100644 index 0e0c3fdfe..000000000 --- a/.github/ISSUE_TEMPLATE/add-a-company-as-a-user-of-albumentations.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: Add a company as a user of Albumentations -description: Add a company that uses Albumentations to https://albumentations.ai and README.md -title: "[Company] " -labels: [Company] -body: - - type: input - id: name - attributes: - label: Name - description: "Company name" - validations: - required: true - - type: input - id: website - attributes: - label: Website - description: "Link to a company's website" - validations: - required: true - - type: input - id: logo - attributes: - label: Link to a logo - description: "Link to an image file (.jpg, .png, .svg, etc) with a company logo" - validations: - required: true - - type: checkboxes - attributes: - label: Confirmation - options: - - label: "I hereby confirm that I have permission from the company specified above to use its name, link to a website, and logo to mention it as a user of Albumentations." - required: true diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f1f585b09..30cd199f8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,6 +2,13 @@ Thank you for your interest in contributing to Albumentations! This guide is designed to make it easier for you to get involved and help us build a powerful, efficient, and easy-to-use image augmentation library. +For small changes (e.g., bug fixes), feel free to submit a PR. + +For larger changes, consider +creating an [**issue**](https://github.com/albumentations-team/albumentations/issues) outlining your proposed change. +You can also join us on [**Discord**](https://discord.com/invite/astral-sh) to discuss your idea with the +community. + ## Getting Started ### Setting Up Your Development Environment diff --git a/LICENSE b/LICENSE index 68e16af19..59fef174a 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2017 Buslaev Alexander, Alexander Parinov, Vladimir Iglovikov +Copyright (c) 2017 Vladimir Iglovikov, Alexander Buslaev, Alexander Parinov, Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index b32f78e44..c207ec650 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,11 @@ [![PyPI version](https://badge.fury.io/py/albumentations.svg)](https://badge.fury.io/py/albumentations) ![CI](https://github.com/albumentations-team/albumentations/workflows/CI/badge.svg) +[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://opensource.org/licenses/MIT) [![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff) +[Discord](https://discord.gg/AKPrrDYNAt) | [Twitter](https://twitter.com/albumentations) | [Docs](https://albumentations.ai/docs/) + Albumentations is a Python library for image augmentation. Image augmentation is used in deep learning and computer vision tasks to increase the quality of trained models. The purpose of image augmentation is to create new training samples from the existing data. Here is an example of how you can apply some [pixel-level](#pixel-level-transforms) augmentations from Albumentations to create new images from the original one: