{"id":24530720,"url":"https://github.com/garthtb/lightcurve","last_synced_at":"2025-07-01T23:02:37.736Z","repository":{"id":267055492,"uuid":"899645601","full_name":"GarthTB/LightCurve","owner":"GarthTB","description":"一个Windows小工具，用于生成一组图片特定区域像素值的变化曲线。","archived":false,"fork":false,"pushed_at":"2024-12-12T19:21:29.000Z","size":120,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-15T18:52:21.229Z","etag":null,"topics":["astrophotography","csharp","image-processing","lightness","photos","statistics","video-processing","windows-app"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GarthTB.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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":"2024-12-06T17:43:51.000Z","updated_at":"2024-12-12T19:21:33.000Z","dependencies_parsed_at":"2025-03-15T19:45:50.041Z","dependency_job_id":null,"html_url":"https://github.com/GarthTB/LightCurve","commit_stats":null,"previous_names":["garthtb/lightcurve"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/GarthTB/LightCurve","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GarthTB%2FLightCurve","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GarthTB%2FLightCurve/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GarthTB%2FLightCurve/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GarthTB%2FLightCurve/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GarthTB","download_url":"https://codeload.github.com/GarthTB/LightCurve/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GarthTB%2FLightCurve/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263047659,"owners_count":23405280,"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":["astrophotography","csharp","image-processing","lightness","photos","statistics","video-processing","windows-app"],"created_at":"2025-01-22T08:17:26.921Z","updated_at":"2025-07-01T23:02:37.422Z","avatar_url":"https://github.com/GarthTB.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [像素值统计工具](https://github.com/GarthTB/LightCurve)\n\n一个Windows小工具，用于生成一组图片特定区域像素值的变化曲线。\n\n## 功能\n\n- 统计一组图片或一段视频中，特定区域像素的被测指标的平均值。\n- 将这个平均值的变化轨迹绘制为一个折线图，或输出为一个txt列表。\n\n## 环境要求\n\n- [.NET 9.0运行时](https://dotnet.microsoft.com/zh-cn/download/dotnet/9.0)\n\n## 注意\n\n- 本程序不使用GPU。在统计巨大文件时可能卡顿。\n- 每一组照片或一个视频文件进行一次统计。照片和视频不能混合处理。\n- 统计结果文件根据原文件来命名。选择输出位置时的文件名不是最终的文件名。\n- 折线图的高度固定为1600像素，宽度在2560至5120之间浮动。\n- 每次会生成两张折线图，一张的纵轴在[0,1]间，另一张会拉伸至数据区域。\n- 由于OpenCV读取文件和色彩转换方法的限制，不同格式的支持如下表。\n\n| 支持列表  | 8bit图片 |    16bit图片   | 32bit及以上图片 | 8bit视频 | 其他视频 |\n| :-----   |  :----:  |    :-----:    |    :-----:    |  :----:  | :----: |\n| 单通道    | 完全支持  |    完全支持    |  可能被当作视频  | 完全支持  |  未知  |\n| 3或4通道  | 完全支持  | 仅RGB和HSI明度 |  可能被当作视频  |  完全支持 |  未知  |\n| 其他通道数 |  不支持   |    不支持     |     不支持      |  不支持   | 不支持 |\n\n## 快捷键\n\n- F1：查看帮助和软件信息\n\n## Credits\n\n- [OpenCvSharp](https://github.com/shimat/opencvsharp)\n- [ScottPlot](https://github.com/ScottPlot/ScottPlot)\n\n## 版本日志\n\n### [v0.4.0](https://github.com/GarthTB/LightCurve/releases/tag/v0.4.0) - 20241210\n\n- 修复：所有图像都读成8bit的问题\n- 修复：色相的取值范围问题\n- 优化：内存分配和垃圾回收，提升稳定性\n\n### [v0.3.0](https://github.com/GarthTB/LightCurve/releases/tag/v0.3.0) - 20241209\n\n- 改进：分组计算以控制内存使用，避免卡死\n- 优化：每次生成一张缩放的和一张不缩放的折线图\n- 优化：完善提示\n\n### [v0.2.0](https://github.com/GarthTB/LightCurve/releases/tag/v0.2.0) - 20241208\n\n- 修复：特殊视频文件无法读取的问题\n- 优化：微调界面，增加拖放功能\n- 优化：折线图外观\n\n### [v0.1.0](https://github.com/GarthTB/LightCurve/releases/tag/v0.1.0) - 20241208\n\n- 发布","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarthtb%2Flightcurve","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgarthtb%2Flightcurve","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgarthtb%2Flightcurve/lists"}