Metadata-Version: 2.1
Name: rembg_cars
Version: 1.0.2
Summary: Remove image background from cars
Home-page: https://github.com/poropeza/rembg_cars
Author: Peter Oropeza
Author-email: peteroropeza2@gmail.com
License: UNKNOWN
Description: # rembg_carros
        Extension of Rembg tool to remove backgrounds for adding a car custom model from library
        
        <p style="display: flex;align-items: center;justify-content: center;">
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-1.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-1.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-2.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-2.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-3.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/car-3.out.png" width="100" />
        </p>
        
        <p style="display: flex;align-items: center;justify-content: center;">
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-1.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-1.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-2.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-2.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-3.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/animal-3.out.png" width="100" />
        </p>
        
        <p style="display: flex;align-items: center;justify-content: center;">
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-1.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-1.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-2.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-2.out.png" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-3.jpg" width="100" />
          <img src="https://raw.githubusercontent.com/danielgatis/rembg/master/examples/girl-3.out.png" width="100" />
        </p>
        
        ### Requirements
        
        * python 3.8 or newer
        
        * torch and torchvision stable version (https://pytorch.org)
        
        #### How to install torch/torchvision
        
        Go to https://pytorch.org and scrool down to `INSTALL PYTORCH` section and follow the instructions.
        
        
        ### Installation
        
        Install it from pypi
        
        ```bash
        pip install rembg_carros
        ```
        
        
        ### Usage as a library
        
        #### Example: Using PIL
        
        In `app.py`
        ```python
        from rembg.bg import remove
        import numpy as np
        import io
        from PIL import Image
        input_path = 'input.png'
        output_path = 'out.png'
        f = np.fromfile(input_path)
        result = remove(f,model_name="carros")
        img = Image.open(io.BytesIO(result)).convert("RGBA")
        img.save(output_path)
        ```
        
        Then run
        ```
        python app.py
        ```
        
        ### References
        
        - https://arxiv.org/pdf/2005.09007.pdf
        - https://github.com/NathanUA/U-2-Net
        - https://github.com/pymatting/pymatting
        - https://github.com/danielgatis/rembg
        
        
        ### License
        
        Copyright (c) 2021 poropeza [Peter Oropeza](https://github.com/poropeza)
        
        Licensed under [MIT License](./LICENSE.txt)
        
Keywords: remove,background,u2net
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8, <4
Description-Content-Type: text/markdown
