Metadata-Version: 2.1
Name: mmedit
Version: 1.0.0rc0
Summary: OpenMMLab Image and Video Editing Toolbox and Benchmark
Home-page: https://github.com/open-mmlab/mmediting
Maintainer: MMEditing Contributors
Maintainer-email: openmmlab@gmail.com
License: Apache License 2.0
Description: <div align="center">
          <img src="docs/en/_static/image/mmediting-logo.png" width="500px"/>
          <div>&nbsp;</div>
          <div align="center">
            <b><font size="5">OpenMMLab website</font></b>
            <sup>
              <a href="https://openmmlab.com">
                <i><font size="4">HOT</font></i>
              </a>
            </sup>
            &nbsp;&nbsp;&nbsp;&nbsp;
            <b><font size="5">OpenMMLab platform</font></b>
            <sup>
              <a href="https://platform.openmmlab.com">
                <i><font size="4">TRY IT OUT</font></i>
              </a>
            </sup>
          </div>
          <div>&nbsp;</div>
        
        [![PyPI](https://badge.fury.io/py/mmedit.svg)](https://pypi.org/project/mmedit/)
        [![docs](https://img.shields.io/badge/docs-latest-blue)](https://mmediting.readthedocs.io/en/1.x/)
        [![badge](https://github.com/open-mmlab/mmediting/workflows/build/badge.svg)](https://github.com/open-mmlab/mmediting/actions)
        [![codecov](https://codecov.io/gh/open-mmlab/mmediting/branch/master/graph/badge.svg)](https://codecov.io/gh/open-mmlab/mmediting)
        [![license](https://img.shields.io/github/license/open-mmlab/mmediting.svg)](https://github.com/open-mmlab/mmediting/blob/1.x/LICENSE)
        [![open issues](https://isitmaintained.com/badge/open/open-mmlab/mmediting.svg)](https://github.com/open-mmlab/mmediting/issues)
        [![issue resolution](https://isitmaintained.com/badge/resolution/open-mmlab/mmediting.svg)](https://github.com/open-mmlab/mmediting/issues)
        
        [📘Documentation](https://mmediting.readthedocs.io/en/1.x/) |
        [🛠️Installation](https://mmediting.readthedocs.io/en/1.x/get_started.html#installation) |
        [👀Model Zoo](https://mmediting.readthedocs.io/en/1.x/model_zoo.html) |
        [🆕Update News](docs/en/notes/changelog.md) |
        [🚀Ongoing Projects](https://github.com/open-mmlab/mmediting/projects) |
        [🤔Reporting Issues](https://github.com/open-mmlab/mmediting/issues)
        
        </div>
        
        English | [简体中文](/README_zh-CN.md)
        
        ## Introduction
        
        MMEditing is an open-source image and video editing toolbox based on PyTorch. It is a part of the [OpenMMLab](https://openmmlab.com/) project.
        
        Currently, MMEditing support the following tasks:
        
        <div align="center">
          <img src="https://user-images.githubusercontent.com/12756472/158984079-c4754015-c1f6-48c5-ac46-62e79448c372.jpg"/>
        </div>
        
        The master branch works with **PyTorch 1.5+**.
        
        Some Demos:
        
        https://user-images.githubusercontent.com/12756472/158972852-be5849aa-846b-41a8-8687-da5dee968ac7.mp4
        
        https://user-images.githubusercontent.com/12756472/158972813-d8d0f19c-f49c-4618-9967-52652726ef19.mp4
        
        ### Major features
        
        - **Modular design**
        
          We decompose the editing framework into different components and one can easily construct a customized editor framework by combining different modules.
        
        - **Support of multiple tasks in editing**
        
          The toolbox directly supports popular and contemporary *inpainting*, *matting*, *super-resolution* and *interpolation* tasks.
        
        - **State of the art**
        
          The toolbox provides state-of-the-art methods in inpainting/matting/super-resolution/interpolation.
        
        Note that **MMSR** has been merged into this repo, as a part of MMEditing.
        With elaborate designs of the new framework and careful implementations,
        hope MMEditing could provide better experience.
        
        ## What's New
        
        - \[2022-08-31\] v1.0.0rc0 was released.
        - \[2022-06-01\] v0.15.0 was released.
          - Support FLAVR
          - Support AOT-GAN
          - Support CAIN with ReduceLROnPlateau Scheduler
        - \[2022-04-01\] v0.14.0 was released.
          - Support TOFlow in video frame interpolation
        - \[2022-03-01\] v0.13.0 was released.
          - Support CAIN
          - Support EDVR-L
          - Support running in Windows
        - \[2022-02-11\] Switch to **PyTorch 1.5+**. The compatibility to earlier versions of PyTorch will no longer be guaranteed.
        
        Please refer to [changelog.md](docs/en/notes/changelog.md) for details and release history.
        
        ## Installation
        
        MMEditing depends on [PyTorch](https://pytorch.org/), [MMEngine](https://github.com/open-mmlab/mmengine) and [MMCV](https://github.com/open-mmlab/mmcv).
        Below are quick steps for installation.
        
        **Step 1.**
        Install PyTorch following [official instructions](https://pytorch.org/get-started/locally/).
        
        **Step 2.**
        Install MMCV with [MIM](https://github.com/open-mmlab/mim).
        
        ```shell
        pip3 install openmim
        # wait for more pre-compiled pkgs to release
        mim install 'mmcv>=2.0.0rc1'
        ```
        
        **Step 3.**
        Install MMEditing from source.
        
        ```shell
        git clone -b 1.x shttps://github.com/open-mmlab/mmediting.git
        cd mmediting
        pip3 install -e .
        ```
        
        Please refer to [get_started.md](docs/en/get_started.md) for more detailed instruction.
        
        ## Getting Started
        
        Please see [get_started.md](docs/en/get_started.md) and [inference.md](docs/en/user_guides/inference.md) for the basic usage of MMEditing.
        
        ## Model Zoo
        
        Supported algorithms:
        
        <details open>
        <summary>Inpainting</summary>
        
        - [x] [Global&Local](configs/global_local/README.md) (ToG'2017)
        - [x] [DeepFillv1](configs/deepfillv1/README.md) (CVPR'2018)
        - [x] [PConv](configs/partial_conv/README.md) (ECCV'2018)
        - [x] [DeepFillv2](configs/deepfillv2/README.md) (CVPR'2019)
        - [x] [AOT-GAN](configs/aot_gan/README.md) (TVCG'2021)
        
        </details>
        
        <details open>
        <summary>Matting</summary>
        
        - [x] [DIM](configs/dim/README.md) (CVPR'2017)
        - [x] [IndexNet](configs/indexnet/README.md) (ICCV'2019)
        - [x] [GCA](configs/gca/README.md) (AAAI'2020)
        
        </details>
        
        <details open>
        <summary>Image-Super-Resolution</summary>
        
        - [x] [SRCNN](configs/srcnn/README.md) (TPAMI'2015)
        - [x] [SRResNet&SRGAN](configs/srgan_resnet/README.md) (CVPR'2016)
        - [x] [EDSR](configs/edsr/README.md) (CVPR'2017)
        - [x] [ESRGAN](configs/esrgan/README.md) (ECCV'2018)
        - [x] [RDN](configs/rdn/README.md) (CVPR'2018)
        - [x] [DIC](configs/dic/README.md) (CVPR'2020)
        - [x] [TTSR](configs/ttsr/README.md) (CVPR'2020)
        - [x] [GLEAN](configs/glean/README.md) (CVPR'2021)
        - [x] [LIIF](configs/liif/README.md) (CVPR'2021)
        
        </details>
        
        <details open>
        <summary>Video-Super-Resolution</summary>
        
        - [x] [EDVR](configs/edvr/README.md) (CVPR'2019)
        - [x] [TOF](configs/tof/README.md) (IJCV'2019)
        - [x] [TDAN](configs/tdan/README.md) (CVPR'2020)
        - [x] [BasicVSR](configs/basicvsr/README.md) (CVPR'2021)
        - [x] [IconVSR](configs/iconvsr/README.md) (CVPR'2021)
        - [x] [BasicVSR++](configs/basicvsr_pp/README.md) (CVPR'2022)
        - [x] [RealBasicVSR](configs/real_basicvsr/README.md) (CVPR'2022)
        
        </details>
        
        <details open>
        <summary>Video Interpolation</summary>
        
        - [x] [TOFlow](configs/tof/README.md) (IJCV'2019)
        - [x] [CAIN](configs/cain/README.md) (AAAI'2020)
        - [x] [FLAVR](configs/flavr/README.md) (CVPR'2021)
        
        </details>
        
        Please refer to [model_zoo](https://mmediting.readthedocs.io/en/1.x/model_zoo.html) for more details.
        
        ## Contributing
        
        We appreciate all contributions to improve MMEditing. Please refer to [CONTRIBUTING.md](https://github.com/open-mmlab/mmcv/tree/2.x/CONTRIBUTING.md) in MMCV and [CONTRIBUTING.md](https://github.com/open-mmlab/mmengine/blob/main/CONTRIBUTING.md) in MMEngine for more details about the contributing guideline.
        
        ## Acknowledgement
        
        MMEditing is an open source project that is contributed by researchers and engineers from various colleges and companies. We appreciate all the contributors who implement their methods or add new features, as well as users who give valuable feedbacks. We wish that the toolbox and benchmark could serve the growing research community by providing a flexible toolkit to reimplement existing methods and develop their own new methods.
        
        ## Citation
        
        If MMEditing is helpful to your research, please cite it as below.
        
        ```bibtex
        @misc{mmediting2022,
            title = {{MMEditing}: {OpenMMLab} Image and Video Editing Toolbox},
            author = {{MMEditing Contributors}},
            howpublished = {\url{https://github.com/open-mmlab/mmediting}},
            year = {2022}
        }
        ```
        
        ## License
        
        This project is released under the [Apache 2.0 license](LICENSE).
        
        ## Projects in OpenMMLab
        
        - [MMEngine](https://github.com/open-mmlab/mmengine): OpenMMLab MMEngine.
        - [MMCV](https://github.com/open-mmlab/mmcv): OpenMMLab foundational library for computer vision.
        - [MIM](https://github.com/open-mmlab/mim): MIM installs OpenMMLab packages.
        - [MMClassification](https://github.com/open-mmlab/mmclassification): OpenMMLab image classification toolbox and benchmark.
        - [MMDetection](https://github.com/open-mmlab/mmdetection): OpenMMLab detection toolbox and benchmark.
        - [MMDetection3D](https://github.com/open-mmlab/mmdetection3d): OpenMMLab's next-generation platform for general 3D object detection.
        - [MMRotate](https://github.com/open-mmlab/mmrotate): OpenMMLab rotated object detection toolbox and benchmark.
        - [MMSegmentation](https://github.com/open-mmlab/mmsegmentation): OpenMMLab semantic segmentation toolbox and benchmark.
        - [MMOCR](https://github.com/open-mmlab/mmocr): OpenMMLab text detection, recognition, and understanding toolbox.
        - [MMPose](https://github.com/open-mmlab/mmpose): OpenMMLab pose estimation toolbox and benchmark.
        - [MMHuman3D](https://github.com/open-mmlab/mmhuman3d): OpenMMLab 3D human parametric model toolbox and benchmark.
        - [MMSelfSup](https://github.com/open-mmlab/mmselfsup): OpenMMLab self-supervised learning toolbox and benchmark.
        - [MMRazor](https://github.com/open-mmlab/mmrazor): OpenMMLab model compression toolbox and benchmark.
        - [MMFewShot](https://github.com/open-mmlab/mmfewshot): OpenMMLab fewshot learning toolbox and benchmark.
        - [MMAction2](https://github.com/open-mmlab/mmaction2): OpenMMLab's next-generation action understanding toolbox and benchmark.
        - [MMTracking](https://github.com/open-mmlab/mmtracking): OpenMMLab video perception toolbox and benchmark.
        - [MMFlow](https://github.com/open-mmlab/mmflow): OpenMMLab optical flow toolbox and benchmark.
        - [MMEditing](https://github.com/open-mmlab/mmediting): OpenMMLab image and video editing toolbox.
        - [MMGeneration](https://github.com/open-mmlab/mmgeneration): OpenMMLab image and video generative models toolbox.
        - [MMDeploy](https://github.com/open-mmlab/mmdeploy): OpenMMLab model deployment framework.
        
Keywords: computer vision,super resolution,video interpolation,inpainting,matting,SISR,RefSR,VSR,GAN,VFI
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Image Processing
Description-Content-Type: text/markdown
Provides-Extra: all
Provides-Extra: tests
Provides-Extra: mim
