{"id":22707096,"url":"https://github.com/cair/py_image_stitcher","last_synced_at":"2025-03-29T20:44:45.188Z","repository":{"id":82388684,"uuid":"113133423","full_name":"cair/py_image_stitcher","owner":"cair","description":"A small library for stitching together images, from Numpy or PIL Sources","archived":false,"fork":false,"pushed_at":"2017-12-05T04:51:07.000Z","size":2,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-04T21:45:10.845Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cair.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-12-05T04:38:23.000Z","updated_at":"2022-01-23T03:47:33.000Z","dependencies_parsed_at":"2023-06-15T11:31:19.762Z","dependency_job_id":null,"html_url":"https://github.com/cair/py_image_stitcher","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cair%2Fpy_image_stitcher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cair%2Fpy_image_stitcher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cair%2Fpy_image_stitcher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cair%2Fpy_image_stitcher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cair","download_url":"https://codeload.github.com/cair/py_image_stitcher/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246243558,"owners_count":20746308,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-10T10:11:28.930Z","updated_at":"2025-03-29T20:44:45.157Z","avatar_url":"https://github.com/cair.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# py_image_stitcher - Stiching since 2017!\nA small library for stitching images together.\nAdd a issue to this repository if you require additional functionality. If you want to contribute, make a pull request!\n\n\n## Install\nOnly tested in Python 3\n```python\npip install https://github.com/UIA-CAIR/py_image_stitcher.git\n```\n\n## Example Usage\n```python\nfrom py_image_stitcher import ImageStitch\nimport numpy as np\nfrom PIL import Image\n\nimarray = np.random.rand(100, 100, 3) * 255\nimg = Image.fromarray(imarray.astype('uint8')).convert('RGB')\nimg2 = np.zeros((84, 84, 3), dtype=np.uint8)\nimg3 = np.random.rand(100, 100, 1) * 255\nimg3 = img3.astype('uint8')\n\nstitch = ImageStitch((84, 84))\nstitch.add(img)\nstitch.add(img, row=1, column=1)\nstitch.add(img, row=2, column=2)\nstitch.add(img, row=3, column=3)\nstitch.save(\"./image.png\")\n\n```\n\n\n## Licence\nCopyright 2017 Per-Arne Andersen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcair%2Fpy_image_stitcher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcair%2Fpy_image_stitcher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcair%2Fpy_image_stitcher/lists"}