vsdenoise


Namevsdenoise JSON
Version 2.7.1 PyPI version JSON
download
home_pageNone
SummaryVapourSynth denoising functions
upload_time2024-12-06 07:08:44
maintainerSetsugen no ao
docs_urlNone
authorSetsugen no ao
requires_python>=3.12
licenseNone
keywords
VCS
bugtrack_url
requirements VapourSynth vstools vskernels vsexprtools vsrgtools vsmasktools vsaa vsscale
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # vs-denoise

### VapourSynth denoising, regression, and motion-compensation functions

<br>

Wrappers for denoising, regression, and motion-compensation-related plugins and functions.

For support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB). <br><br>

## How to install

Install `vsdenoise` with the following command:

```sh
pip install vsdenoise
```

Or if you want the latest git version, install it with this command:

```sh
pip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise.git
```

<br><br>

## Example usage

```py
from vsdenoise import MVTools, SADMode, MotionMode, Prefilter, BM3DCuda, Profile, nl_means

clip = ...

ref = MVTools.denoise(
    clip, thSAD=100, block_size=32, overlap=16,
    motion=MotionMode.HIGH_SAD,
    prefilter=Prefilter.DFTTEST,
    sad_mode=(
        SADMode.ADAPTIVE_SPATIAL_MIXED,
        SADMode.ADAPTIVE_SATD_MIXED,
    )
)

denoise = BM3DCuda.denoise(
    clip, sigma=0.8, tr=2, profile=Profile.NORMAL, ref=ref, planes=0
)

denoise = nl_means(denoise, tr=2, strength=0.2, ref=ref, planes=[1, 2])
```

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vsdenoise",
    "maintainer": "Setsugen no ao",
    "docs_url": null,
    "requires_python": ">=3.12",
    "maintainer_email": "setsugen@setsugen.dev",
    "keywords": null,
    "author": "Setsugen no ao",
    "author_email": "setsugen@setsugen.dev",
    "download_url": "https://files.pythonhosted.org/packages/50/62/3c7b7d58ef90d26b3b31c513fdef6f9726f76543e0f8de42f099a44e16b8/vsdenoise-2.7.1.tar.gz",
    "platform": null,
    "description": "# vs-denoise\n\n### VapourSynth denoising, regression, and motion-compensation functions\n\n<br>\n\nWrappers for denoising, regression, and motion-compensation-related plugins and functions.\n\nFor support you can check out the [JET Discord server](https://discord.gg/XTpc6Fa9eB). <br><br>\n\n## How to install\n\nInstall `vsdenoise` with the following command:\n\n```sh\npip install vsdenoise\n```\n\nOr if you want the latest git version, install it with this command:\n\n```sh\npip install git+https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise.git\n```\n\n<br><br>\n\n## Example usage\n\n```py\nfrom vsdenoise import MVTools, SADMode, MotionMode, Prefilter, BM3DCuda, Profile, nl_means\n\nclip = ...\n\nref = MVTools.denoise(\n    clip, thSAD=100, block_size=32, overlap=16,\n    motion=MotionMode.HIGH_SAD,\n    prefilter=Prefilter.DFTTEST,\n    sad_mode=(\n        SADMode.ADAPTIVE_SPATIAL_MIXED,\n        SADMode.ADAPTIVE_SATD_MIXED,\n    )\n)\n\ndenoise = BM3DCuda.denoise(\n    clip, sigma=0.8, tr=2, profile=Profile.NORMAL, ref=ref, planes=0\n)\n\ndenoise = nl_means(denoise, tr=2, strength=0.2, ref=ref, planes=[1, 2])\n```\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "VapourSynth denoising functions",
    "version": "2.7.1",
    "project_urls": {
        "Contact": "https://discord.gg/XTpc6Fa9eB",
        "Source Code": "https://github.com/Jaded-Encoding-Thaumaturgy/vs-denoise"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e4cb09ec5ee49038ccbda19c245b75a1f10e54ad10b05eb66ef19f46a650371",
                "md5": "0e9fa88fb57fb3c0c11bdb9943c73494",
                "sha256": "2c01eb8fe7bccd90560473d5eaf6137732744979853cd371bdefb92bc3e9f466"
            },
            "downloads": -1,
            "filename": "vsdenoise-2.7.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0e9fa88fb57fb3c0c11bdb9943c73494",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12",
            "size": 75132,
            "upload_time": "2024-12-06T07:08:42",
            "upload_time_iso_8601": "2024-12-06T07:08:42.054431Z",
            "url": "https://files.pythonhosted.org/packages/0e/4c/b09ec5ee49038ccbda19c245b75a1f10e54ad10b05eb66ef19f46a650371/vsdenoise-2.7.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "50623c7b7d58ef90d26b3b31c513fdef6f9726f76543e0f8de42f099a44e16b8",
                "md5": "f2550230a3c4216a48d449a63e6f0e4d",
                "sha256": "d9bfdeb89987ee3608165072213aaa8ca2e91167fa6fb9d48fb2d090f5b697c0"
            },
            "downloads": -1,
            "filename": "vsdenoise-2.7.1.tar.gz",
            "has_sig": false,
            "md5_digest": "f2550230a3c4216a48d449a63e6f0e4d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12",
            "size": 66372,
            "upload_time": "2024-12-06T07:08:44",
            "upload_time_iso_8601": "2024-12-06T07:08:44.741700Z",
            "url": "https://files.pythonhosted.org/packages/50/62/3c7b7d58ef90d26b3b31c513fdef6f9726f76543e0f8de42f099a44e16b8/vsdenoise-2.7.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-06 07:08:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Jaded-Encoding-Thaumaturgy",
    "github_project": "vs-denoise",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "VapourSynth",
            "specs": [
                [
                    ">=",
                    "68"
                ]
            ]
        },
        {
            "name": "vstools",
            "specs": [
                [
                    ">=",
                    "3.2.0"
                ]
            ]
        },
        {
            "name": "vskernels",
            "specs": [
                [
                    ">=",
                    "3.2.0"
                ]
            ]
        },
        {
            "name": "vsexprtools",
            "specs": [
                [
                    ">=",
                    "1.6.0"
                ]
            ]
        },
        {
            "name": "vsrgtools",
            "specs": [
                [
                    ">=",
                    "1.7.0"
                ]
            ]
        },
        {
            "name": "vsmasktools",
            "specs": [
                [
                    ">=",
                    "1.3.0"
                ]
            ]
        },
        {
            "name": "vsaa",
            "specs": [
                [
                    ">=",
                    "1.10.0"
                ]
            ]
        },
        {
            "name": "vsscale",
            "specs": [
                [
                    ">=",
                    "2.1.0"
                ]
            ]
        }
    ],
    "lcname": "vsdenoise"
}
        
Elapsed time: 0.37545s