seemore


Nameseemore JSON
Version 0.1.0 PyPI version JSON
download
home_pageNone
SummaryA short description of your package
upload_time2024-10-31 07:01:40
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # See More Details: Efficient Image Super-Resolution by Experts Mining

This project wraps the code and models from [seemoredetails](https://github.com/eduardzamfir/seemoredetails) to make it easier to use.

## Installation

```bash
pip install seemore
```

## Quick Start

```python
from seemore import SeemoReUpscaler

# Initialize the upscaler
upscaler = SeemoReUpscaler("seemore_b_x4", device="cpu")

# Load and upscale an image
import cv2
image = cv2.imread("input.jpg")
result = upscaler(image)
```

## Available Models

The following models are available:

-   `seemore_b_x2` - Base model, 2x upscaling
-   `seemore_b_x3` - Base model, 3x upscaling
-   `seemore_b_x4` - Base model, 4x upscaling
-   `seemore_t_x2` - Tiny model, 2x upscaling
-   `seemore_t_x3` - Tiny model, 3x upscaling
-   `seemore_t_x4` - Tiny model, 4x upscaling

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "seemore",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": null,
    "author_email": "Sanster <cwq1913@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/32/18/16194c16e33a666f0452f114bade161021d0cf46cd0b48fff9b1bb6eef96/seemore-0.1.0.tar.gz",
    "platform": null,
    "description": "# See More Details: Efficient Image Super-Resolution by Experts Mining\n\nThis project wraps the code and models from [seemoredetails](https://github.com/eduardzamfir/seemoredetails) to make it easier to use.\n\n## Installation\n\n```bash\npip install seemore\n```\n\n## Quick Start\n\n```python\nfrom seemore import SeemoReUpscaler\n\n# Initialize the upscaler\nupscaler = SeemoReUpscaler(\"seemore_b_x4\", device=\"cpu\")\n\n# Load and upscale an image\nimport cv2\nimage = cv2.imread(\"input.jpg\")\nresult = upscaler(image)\n```\n\n## Available Models\n\nThe following models are available:\n\n-   `seemore_b_x2` - Base model, 2x upscaling\n-   `seemore_b_x3` - Base model, 3x upscaling\n-   `seemore_b_x4` - Base model, 4x upscaling\n-   `seemore_t_x2` - Tiny model, 2x upscaling\n-   `seemore_t_x3` - Tiny model, 3x upscaling\n-   `seemore_t_x4` - Tiny model, 4x upscaling\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A short description of your package",
    "version": "0.1.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/Sanster/seemore/issues",
        "Homepage": "https://github.com/Sanster/seemore"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ef3f53a648a4d0d160c4c7c921cf49c65cecce1edcbfbbe45623f080af5311e",
                "md5": "7f8ace0f0386405378638f50e96eff33",
                "sha256": "541e32d02d05445e5d09dba19e09df002104f08dcd5079a1c33b182e5f9cffc6"
            },
            "downloads": -1,
            "filename": "seemore-0.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "7f8ace0f0386405378638f50e96eff33",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 7257,
            "upload_time": "2024-10-31T07:01:39",
            "upload_time_iso_8601": "2024-10-31T07:01:39.078164Z",
            "url": "https://files.pythonhosted.org/packages/2e/f3/f53a648a4d0d160c4c7c921cf49c65cecce1edcbfbbe45623f080af5311e/seemore-0.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "321816194c16e33a666f0452f114bade161021d0cf46cd0b48fff9b1bb6eef96",
                "md5": "480d95c6b5320e53e38568959b9e9b4c",
                "sha256": "e985602131f3b08fe89a039737c6f45acc8d0fcc04a101ea5638f0d4518ba305"
            },
            "downloads": -1,
            "filename": "seemore-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "480d95c6b5320e53e38568959b9e9b4c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 8736,
            "upload_time": "2024-10-31T07:01:40",
            "upload_time_iso_8601": "2024-10-31T07:01:40.503765Z",
            "url": "https://files.pythonhosted.org/packages/32/18/16194c16e33a666f0452f114bade161021d0cf46cd0b48fff9b1bb6eef96/seemore-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-31 07:01:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Sanster",
    "github_project": "seemore",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "tox": true,
    "lcname": "seemore"
}
        
Elapsed time: 0.38178s