{"id":18886912,"url":"https://github.com/lostjared/libacidcam","last_synced_at":"2026-03-05T11:32:34.220Z","repository":{"id":110401246,"uuid":"126654256","full_name":"lostjared/libacidcam","owner":"lostjared","description":"C++ shared object for the filters from Acid Cam","archived":false,"fork":false,"pushed_at":"2026-01-17T08:16:10.000Z","size":104732,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2026-01-17T18:50:49.087Z","etag":null,"topics":["filter","glitch-art","opencv","shared-library","video-processing"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lostjared.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":"2018-03-25T01:19:51.000Z","updated_at":"2026-01-17T08:16:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"b08ab70d-ad25-4d9b-8879-4f23b0a68774","html_url":"https://github.com/lostjared/libacidcam","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/lostjared/libacidcam","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostjared%2Flibacidcam","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostjared%2Flibacidcam/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostjared%2Flibacidcam/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostjared%2Flibacidcam/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lostjared","download_url":"https://codeload.github.com/lostjared/libacidcam/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lostjared%2Flibacidcam/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30122145,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T11:11:57.947Z","status":"ssl_error","status_checked_at":"2026-03-05T11:11:29.001Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["filter","glitch-art","opencv","shared-library","video-processing"],"created_at":"2024-11-08T07:31:59.961Z","updated_at":"2026-03-05T11:32:34.199Z","avatar_url":"https://github.com/lostjared.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# libacidcam\n\nThis version shares some code with Acid Cam v2 OSX, so sometimes when I update the parts that are shared show up in both projects. libacidcam uses C++/OpenCV and Autotools, and this macOS program uses Objective-C++/Cocoa/OpenCV and Xcode\n\nWhen upgrading to new versions of Acid Cam Qt, acidcam-cli or any other project that uses libacidcam:\n\nPlease be sure to recompile, install and relink any applications.\n\nWhen writing C++ using libacidcam  do not call another mulithreaded filter from within a mulithreaded filter inside of its loop callback\n\nTo be able to use all the filters in this library your system should have at lest 8 GB of ram.\n\nShared library with filters from Acid Cam\n\nWith this library you can use the same filters in your own OpenCV applications.\n\nFirst install/compile OpenCV development libraries  and pkg-config.\n\nIf you want to compile with CMake use\n\n\t$ mkdir build \u0026\u0026 cd build\n\n\t$ cmake .. -DBUILD_SHARED_LIBS=ON \n\nor\n\n\t$ cmake .. -DBUILD_SHARED_LIBS=ON -DENABLE_TESTS=ON\n\nor to compile examples:\n\n\t$ cmake .. -DBUILD_SHARED_LIBS=ON -DENABLE_TESTS=ON -DENABLE_EXAMPLES=ON\n\n\t$ make -j4\n\nto run tests to make sure everything is working (will take a while)\n\n\t$ ctest\n\ninstall\n\n\t$ sudo make install\n\nTo run the test use:\n\n    $ ./test-filter1\n    \n\nIf you want to compile with Autotools this library uses pkg-config and Autoconf,Automake,Libtool.\n\t\n\t$ ./autogen.sh \u0026\u0026 ./configure \u0026\u0026 make \u0026\u0026 sudo make install\n\nIf you are running on Linux you will need to use this command so it can find the library\n\n\t$ sudo ldconfig\n\nThen you should be able to use pkg-config in your project and include ac.h\n\nif you are using autotools you can use this macro in your configure.ac\n\nbe sure to recompile this library and relink programs current version is 0:0:0\n\nPKG_CHECK_MODULES(ACIDCAM, acidcam, found=1, found=0)\n\nAC_INCLUDES=$ACIDCAM_CFLAGS\n\nAC_LIBS=$ACIDCAM_LIBS\n\nAC_SUBST(AC_INCLUDES)\n\nAC_SUBST(AC_LIBS)\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostjared%2Flibacidcam","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flostjared%2Flibacidcam","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flostjared%2Flibacidcam/lists"}