{"id":25432317,"url":"https://github.com/lin775533/canny_processor_openmp","last_synced_at":"2025-10-20T02:44:14.516Z","repository":{"id":275494810,"uuid":"926243576","full_name":"Lin775533/canny_processor_OpenMP","owner":"Lin775533","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-02T22:02:45.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-17T04:49:46.812Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/Lin775533.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":"2025-02-02T21:53:45.000Z","updated_at":"2025-02-02T22:02:48.000Z","dependencies_parsed_at":"2025-02-02T22:38:37.576Z","dependency_job_id":null,"html_url":"https://github.com/Lin775533/canny_processor_OpenMP","commit_stats":null,"previous_names":["lin775533/canny_processor_openmp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lin775533%2Fcanny_processor_OpenMP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lin775533%2Fcanny_processor_OpenMP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lin775533%2Fcanny_processor_OpenMP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lin775533%2Fcanny_processor_OpenMP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lin775533","download_url":"https://codeload.github.com/Lin775533/canny_processor_OpenMP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254183052,"owners_count":22028408,"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":"2025-02-17T04:49:51.042Z","updated_at":"2025-10-20T02:44:14.387Z","avatar_url":"https://github.com/Lin775533.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gaussian Blur Parallelization in Canny Edge Detection\n\nThis project demonstrates parallel implementations of the Gaussian blur operation using OpenMP and Pthreads. Both versions optimize the horizontal (`blur_x`) and vertical (`blur_y`) blur operations in the Canny edge detection algorithm.\n\n## OpenMP Implementation\n\n### Overview\n\nThe OpenMP version leverages OpenMP directives for automatic thread management and workload distribution. This implementation focuses on optimizing nested loops in both blur operations while maintaining computational accuracy.\n\n### Implementation Details\n\n```c\n// Blur operations parallelized using OpenMP directives\n#pragma omp parallel for collapse(2)\nfor (r = 0; r \u003c rows; r++) {\n    for (c = 0; c \u003c cols; c++) {\n        // Blur computation\n    }\n}\n```\n\n### Performance Results\n\n* Initial `blur_x` parallelization achieved a 16.3% improvement in processing time\n* Additional `blur_y` optimization resulted in a 10.3% performance increase\n* Total execution time was reduced from 0.836s to 0.750s\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flin775533%2Fcanny_processor_openmp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flin775533%2Fcanny_processor_openmp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flin775533%2Fcanny_processor_openmp/lists"}