{"id":26199038,"url":"https://github.com/null-none/heat-map","last_synced_at":"2026-06-06T15:01:41.277Z","repository":{"id":274479515,"uuid":"922958374","full_name":"null-none/heat-map","owner":"null-none","description":"Generate image heat maps in Python","archived":false,"fork":false,"pushed_at":"2026-03-13T11:43:47.000Z","size":167,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-14T00:25:22.178Z","etag":null,"topics":["heatmap","image","image-processing","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/null-none.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-27T11:56:10.000Z","updated_at":"2026-03-13T11:43:44.000Z","dependencies_parsed_at":"2025-01-27T15:42:30.182Z","dependency_job_id":"622f50ac-12b6-441b-b704-177db4a2b38d","html_url":"https://github.com/null-none/heat-map","commit_stats":null,"previous_names":["null-none/heat-map"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/null-none/heat-map","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2Fheat-map","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2Fheat-map/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2Fheat-map/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2Fheat-map/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/null-none","download_url":"https://codeload.github.com/null-none/heat-map/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/null-none%2Fheat-map/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33986901,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-06T02:00:07.033Z","response_time":107,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["heatmap","image","image-processing","python"],"created_at":"2025-03-12T02:56:06.867Z","updated_at":"2026-06-06T15:01:41.247Z","avatar_url":"https://github.com/null-none.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# heat-map\nGenerate image heat maps in Python \n\n## Install\n\n`pip install heat-map`\n\n## Examples\n\n#### Given some points (co-ordinates) and a base image\n\n```python\nfrom heat_map.heatmap import Heatmapper, _asset_file\nfrom PIL import Image\n\nexample_points = [(120, 25), (200, 50), (60, 300), (60, 300), (60, 300), (60, 300), (60, 300), (170, 250)]\nexample_img = Image.open(_asset_file(\"area.png\"))\n\nheatmapper = Heatmapper(colours=\"default\")\nheatmapper.heatmap_on_img(example_points, example_img).save(\"out.png\")\n\n```\n![area](examples/out.png?raw=true)\n\n## Heatmap config\n\nThe following options are available (shown with their default values):\n\n```python\nheatmapper = Heatmapper(\n    point_diameter=50,  # the size of each point to be drawn\n    point_strength=0.2,  # the strength, between 0 and 1, of each point to be drawn\n    opacity=0.65,  # the opacity of the heatmap layer\n    colours='default',  # 'default' or 'reveal'\n                        # OR a matplotlib LinearSegmentedColorMap object \n                        # OR the path to a horizontal scale image\n    grey_heatmapper='PIL'  # The object responsible for drawing the points\n                           # Pillow used by default, 'PySide' option available if installed\n)\n```\n\n### Provided colour schemes\n\n#### default\n\n![default colour scheme](/heat_map/assets/default.png?raw=true)\n\n#### reveal\n\n![reveal colour scheme](/heat_map/assets/reveal.png?raw=true)\n\n\n## License\n\nMIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-none%2Fheat-map","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnull-none%2Fheat-map","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnull-none%2Fheat-map/lists"}