Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.5%) to scientific vocabulary
Last synced: 6 months ago · JSON representation ·

Repository

Basic Info
  • Host: GitHub
  • Owner: goddesshs
  • License: apache-2.0
  • Language: Python
  • Default Branch: main
  • Size: 23.6 MB
Statistics
  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • Open Issues: 0
  • Releases: 0
Created about 3 years ago · Last pushed about 3 years ago
Metadata Files
Readme Contributing License Code of conduct Citation

README.md

 
OpenMMLab website HOT      OpenMMLab platform TRY IT OUT
 
[![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/latest/) [![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/master/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/latest/) | [🛠️Installation](https://mmediting.readthedocs.io/en/latest/install.html) | [👀Model Zoo](https://mmediting.readthedocs.io/en/latest/_tmp/modelzoo.html) | [🆕Update News](https://github.com/open-mmlab/mmediting/blob/master/docs/en/changelog.md) | [🚀Ongoing Projects](https://github.com/open-mmlab/mmediting/projects) | [🤔Reporting Issues](https://github.com/open-mmlab/mmediting/issues)
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 project. Currently, MMEditing supports:

The master branch works with PyTorch 1.5+.

Some Demos:

https://user-images.githubusercontent.com/12756472/175944645-cabe8c2b-9f25-440b-91cc-cdac4e752c5a.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 *generation* tasks. - **State of the art** The toolbox provides state-of-the-art methods in inpainting/matting/super-resolution/generation. 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 MMEditing maintains both master and 1.x branches. See more details in [Branch Maintenance Plan](README.md#branch-maintenance-plan). ### 💎 Stable version **0.16.0** was released in 31/10/2022: - `VisualizationHook` is deprecated. Users should use `MMEditVisualizationHook` instead. - Fix FLAVR register. - Fix the number of channels in RDB. Please refer to [changelog.md](docs/en/changelog.md) for details and release history. ### 🌟 Preview of 1.x version A brand new version of [**MMEditing v1.0.0rc1**](https://github.com/open-mmlab/mmediting/releases/tag/v1.0.0rc1) was released in 24/09/2022: - Support all the tasks, models, metrics, and losses in [MMGeneration](https://github.com/open-mmlab/mmgeneration) 😍。 - Unifies interfaces of all components based on [MMEngine](https://github.com/open-mmlab/mmengine). - Refactored and more flexible [architecture](https://mmediting.readthedocs.io/en/1.x/1_overview.html). Find more new features in [1.x branch](https://github.com/open-mmlab/mmediting/tree/1.x). Issues and PRs are welcome! ## Installation MMEditing depends on [PyTorch](https://pytorch.org/) 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 mim install mmcv-full ``` **Step 3.** Install MMEditing from source. ```shell git clone https://github.com/open-mmlab/mmediting.git cd mmediting pip3 install -e . ``` Please refer to [install.md](docs/en/install.md) for more detailed instruction. ## Getting Started Please see [getting_started.md](docs/en/getting_started.md) and [demo.md](docs/en/demo.md) for the basic usage of MMEditing. ## Model Zoo Supported algorithms:
Inpainting - [x] [Global&Local](configs/inpainting/global_local/README.md) (ToG'2017) - [x] [DeepFillv1](configs/inpainting/deepfillv1/README.md) (CVPR'2018) - [x] [PConv](configs/inpainting/partial_conv/README.md) (ECCV'2018) - [x] [DeepFillv2](configs/inpainting/deepfillv2/README.md) (CVPR'2019) - [x] [AOT-GAN](configs/inpainting/AOT-GAN/README.md) (TVCG'2021)
Matting - [x] [DIM](configs/mattors/dim/README.md) (CVPR'2017) - [x] [IndexNet](configs/mattors/indexnet/README.md) (ICCV'2019) - [x] [GCA](configs/mattors/gca/README.md) (AAAI'2020)
Image-Super-Resolution - [x] [SRCNN](configs/restorers/srcnn/README.md) (TPAMI'2015) - [x] [SRResNet&SRGAN](configs/restorers/srresnet_srgan/README.md) (CVPR'2016) - [x] [EDSR](configs/restorers/edsr/README.md) (CVPR'2017) - [x] [ESRGAN](configs/restorers/esrgan/README.md) (ECCV'2018) - [x] [RDN](configs/restorers/rdn/README.md) (CVPR'2018) - [x] [DIC](configs/restorers/dic/README.md) (CVPR'2020) - [x] [TTSR](configs/restorers/ttsr/README.md) (CVPR'2020) - [x] [GLEAN](configs/restorers/glean/README.md) (CVPR'2021) - [x] [LIIF](configs/restorers/liif/README.md) (CVPR'2021)
Video-Super-Resolution - [x] [EDVR](configs/restorers/edvr/README.md) (CVPR'2019) - [x] [TOF](configs/restorers/tof/README.md) (IJCV'2019) - [x] [TDAN](configs/restorers/tdan/README.md) (CVPR'2020) - [x] [BasicVSR](configs/restorers/basicvsr/README.md) (CVPR'2021) - [x] [IconVSR](configs/restorers/iconvsr/README.md) (CVPR'2021) - [x] [BasicVSR++](configs/restorers/basicvsr_plusplus/README.md) (CVPR'2022) - [x] [RealBasicVSR](configs/restorers/real_basicvsr/README.md) (CVPR'2022)
Generation - [x] [CycleGAN](configs/synthesizers/cyclegan/README.md) (ICCV'2017) - [x] [pix2pix](configs/synthesizers/pix2pix/README.md) (CVPR'2017)
Video Interpolation - [x] [TOFlow](configs/video_interpolators/tof/README.md) (IJCV'2019) - [x] [CAIN](configs/video_interpolators/cain/README.md) (AAAI'2020) - [x] [FLAVR](configs/video_interpolators/flavr/README.md) (CVPR'2021)

Please refer to model_zoo for more details.

Contributing

We appreciate all contributions to improve MMEditing. Please refer to our contributing guidelines.

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.

Branch Maintenance Plan

MMEditing currently has two branches, the master and 1.x branches, which go through the following three phases.

| Phase | Time | Branch | description | | -------------------- | --------------------- | ----------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- | | RC Period | 2022/9/1 - 2022.12.31 | Release candidate code (1.x version) will be released on 1.x branch. Default master branch is still 0.x version | Master and 1.x branches iterate normally | | Compatibility Period | 2023/1/1 - 2023.12.31 | Default master branch will be switched to 1.x branch, and 0.x branch will correspond to 0.x version | We still maintain the old version 0.x, respond to user needs, but try not to introduce changes that break compatibility; master branch iterates normally | | Maintenance Period | From 2024/1/1 | Default master branch corresponds to 1.x version and 0.x branch is 0.x version | 0.x branch is in maintenance phase, no more new feature support; master branch is iterating normally |

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.

Projects in OpenMMLab

  • MMEngine: OpenMMLab foundational library for training deep learning models.
  • MMCV: OpenMMLab foundational library for computer vision.
  • MMEval: A unified evaluation library for multiple machine learning libraries.
  • MIM: MIM installs OpenMMLab packages.
  • MMClassification: OpenMMLab image classification toolbox and benchmark.
  • MMDetection: OpenMMLab detection toolbox and benchmark.
  • MMDetection3D: OpenMMLab's next-generation platform for general 3D object detection.
  • MMRotate: OpenMMLab rotated object detection toolbox and benchmark.
  • MMSegmentation: OpenMMLab semantic segmentation toolbox and benchmark.
  • MMOCR: OpenMMLab text detection, recognition, and understanding toolbox.
  • MMPose: OpenMMLab pose estimation toolbox and benchmark.
  • MMHuman3D: OpenMMLab 3D human parametric model toolbox and benchmark.
  • MMSelfSup: OpenMMLab self-supervised learning toolbox and benchmark.
  • MMRazor: OpenMMLab model compression toolbox and benchmark.
  • MMFewShot: OpenMMLab fewshot learning toolbox and benchmark.
  • MMAction2: OpenMMLab's next-generation action understanding toolbox and benchmark.
  • MMTracking: OpenMMLab video perception toolbox and benchmark.
  • MMFlow: OpenMMLab optical flow toolbox and benchmark.
  • MMEditing: OpenMMLab image and video editing toolbox.
  • MMGeneration: OpenMMLab image and video generative models toolbox.
  • MMDeploy: OpenMMLab model deployment framework.

Owner

  • Name: goddesshs
  • Login: goddesshs
  • Kind: user

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
  - family-names: MMEditing
    given-names: Contributors
title: "MMEditing: OpenMMLab Image and Video Editing Toolbox"
version: 0.13.0
date-released: 2022-03-01
url: "https://github.com/open-mmlab/mmediting"
license: Apache-2.0

GitHub Events

Total
Last Year

Dependencies

.github/workflows/lint.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.github/workflows/merge_stage_test.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • codecov/codecov-action v1.0.14 composite
  • mxschmitt/action-tmate v3 composite
.github/workflows/pr_stage_test.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
  • codecov/codecov-action v1.0.14 composite
  • mxschmitt/action-tmate v3 composite
.github/workflows/publish-to-pypi.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v1 composite
.github/workflows/test_mim.yml actions
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
.circleci/docker/Dockerfile docker
  • pytorch/pytorch ${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel build
docker/Dockerfile docker
  • pytorch/pytorch ${PYTORCH}-cuda${CUDA}-cudnn${CUDNN}-devel build
requirements/docs.txt pypi
  • docutils ==0.16.0
  • mmcls ==0.10.0
  • myst_parser *
  • sphinx ==4.0.2
  • sphinx-copybutton *
  • sphinx_markdown_tables *
requirements/mminstall.txt pypi
  • mmcv-full >=1.3.17
requirements/readthedocs.txt pypi
  • lmdb *
  • mmcv *
  • regex *
  • scikit-image *
  • titlecase *
  • torch *
  • torchvision *
requirements/runtime.txt pypi
  • Pillow *
  • av ==8.0.3
  • av *
  • facexlib *
  • lmdb *
  • mmcv-full >=1.3.13
  • numpy *
  • opencv-python *
  • tensorboard *
  • torch *
  • torchvision *
requirements/tests.txt pypi
  • codecov * test
  • flake8 * test
  • interrogate * test
  • isort ==5.10.1 test
  • onnxruntime * test
  • pytest * test
  • pytest-runner * test
  • yapf * test
requirements.txt pypi
setup.py pypi