{"id":15372479,"url":"https://github.com/wkentaro/imgviz-cpp","last_synced_at":"2025-08-16T23:06:49.947Z","repository":{"id":66065826,"uuid":"288850076","full_name":"wkentaro/imgviz-cpp","owner":"wkentaro","description":"Image Visualization Tools for C++","archived":false,"fork":false,"pushed_at":"2021-10-06T11:22:53.000Z","size":7602,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-15T14:07:49.563Z","etag":null,"topics":["deep-learning","image-visualization","semantic-segmentation"],"latest_commit_sha":null,"homepage":"","language":"C++","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/wkentaro.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,"zenodo":null}},"created_at":"2020-08-19T22:24:27.000Z","updated_at":"2023-09-08T18:11:30.000Z","dependencies_parsed_at":"2023-05-06T15:17:13.366Z","dependency_job_id":null,"html_url":"https://github.com/wkentaro/imgviz-cpp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wkentaro/imgviz-cpp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wkentaro%2Fimgviz-cpp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wkentaro%2Fimgviz-cpp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wkentaro%2Fimgviz-cpp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wkentaro%2Fimgviz-cpp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wkentaro","download_url":"https://codeload.github.com/wkentaro/imgviz-cpp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wkentaro%2Fimgviz-cpp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270781393,"owners_count":24643820,"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","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"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":["deep-learning","image-visualization","semantic-segmentation"],"created_at":"2024-10-01T13:51:21.065Z","updated_at":"2025-08-16T23:06:49.938Z","avatar_url":"https://github.com/wkentaro.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  imgviz-cpp\n\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003e\n  Image Visualization Tools for C++\n\u003c/h4\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/wkentaro/imgviz-cpp/actions\"\u003e\n    \u003cimg src=\"https://github.com/wkentaro/imgviz-cpp/workflows/ci/badge.svg\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"#installation\"\u003e\u003cb\u003eInstallation\u003c/b\u003e\u003c/a\u003e |\n  \u003ca href=\"examples/getting_started.cpp\"\u003e\u003cb\u003eGetting Started\u003c/b\u003e\u003c/a\u003e |\n  \u003ca href=\"#examples\"\u003e\u003cb\u003eExamples\u003c/b\u003e\u003c/a\u003e |\n  \u003ca href=\"https://github.com/wkentaro/imgviz\"\u003e\u003cb\u003ePython Version\u003c/b\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n\u003cbr/\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cimg src=\".readme/getting_started.png\" width=\"75%\"\u003e\n\u003c/div\u003e\n\n## Installation\n\n1. Copy [`include/imgviz.hpp`](include/imgviz.hpp) to\n  your project's `include` directory.\n1. Add below to your `CMakeLists.txt`.\n1. Refer to [`examples/getting_started.cpp`](examples/getting_started.cpp)\n   and [examples](#examples) to see how to use this library.\n\n```cmake\nfind_package(OpenCV REQUIRED)\n\ninclude_directories(${OpenCV_INCLUDE_DIRS} include)\nlink_directories(${OpenCV_LIBRARY_DIRS})\nadd_definitions(${OpenCV_DEFINITIONS})\n\nadd_executable(your_executable src/your_executable.cpp)\ntarget_link_libraries(your_executable ${OpenCV_LIBRARIES})\n```\n\n## Examples\n\n```bash\ngit clone https://github.com/wkentaro/imgviz-cpp.git\ncd imgviz-cpp\n\nmkdir build\ncd build\n\ncmake ..\nmake -j\n\n./getting_started ../data\n```\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003ca href=\"examples/label_to_bgr.cpp\"\u003e\n        \u003ccode\u003eexamples/label_to_bgr.cpp\u003c/code\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\".readme/label_to_bgr.png\" width=\"66%\"\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003ca href=\"examples/depth_to_bgr.cpp\"\u003e\n        \u003ccode\u003eexamples/depth_to_bgr.cpp\u003c/code\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\".readme/depth_to_bgr.png\" width=\"100%\"\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003ca href=\"examples/tile.cpp\"\u003e\n        \u003ccode\u003eexamples/tile.cpp\u003c/code\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\".readme/tile.png\" width=\"66%\"\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\n      \u003ca href=\"examples/centerize.cpp\"\u003e\n        \u003ccode\u003eexamples/centerize.cpp\u003c/code\u003e\n      \u003c/a\u003e\n    \u003c/td\u003e\n    \u003ctd\u003e\u003cimg src=\".readme/centerize.png\" width=\"66%\"\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwkentaro%2Fimgviz-cpp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwkentaro%2Fimgviz-cpp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwkentaro%2Fimgviz-cpp/lists"}