{"id":19053599,"url":"https://github.com/nating/vision","last_synced_at":"2026-01-31T04:01:28.877Z","repository":{"id":91224664,"uuid":"106433940","full_name":"nating/vision","owner":"nating","description":"A deprecated repository for Computer Vision projects written in OpenCV.","archived":false,"fork":false,"pushed_at":"2017-10-25T19:02:31.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-06T01:05:23.869Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nating.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}},"created_at":"2017-10-10T15:14:02.000Z","updated_at":"2017-10-25T18:56:15.000Z","dependencies_parsed_at":"2023-03-22T12:03:18.526Z","dependency_job_id":null,"html_url":"https://github.com/nating/vision","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nating/vision","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nating%2Fvision","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nating%2Fvision/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nating%2Fvision/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nating%2Fvision/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nating","download_url":"https://codeload.github.com/nating/vision/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nating%2Fvision/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28928640,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-31T02:59:34.861Z","status":"ssl_error","status_checked_at":"2026-01-31T02:59:05.369Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2024-11-08T23:32:41.798Z","updated_at":"2026-01-31T04:01:28.862Z","avatar_url":"https://github.com/nating.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Computer Vision\nIf you came here looking for resources for CS4053, you just missed them. You can request access to a different repository with some available [here](https://github.com/nating/cs4053) if you want.\n\n## How to Set up your OpenCV environment on Mac\n\n*Please note: Keep in mind that it matters where your 'build' folder is when you run CMake, and this path is where your build folder's path should point to for eternity.*\n\n* \u003ca href=\"https://itunes.apple.com/ie/app/xcode/id497799835?mt=12\" target=\"_blank\"\u003eInstall XCode\u003c/a\u003e\n* \u003ca href=\"https://cmake.org/download/\" target=\"_blank\"\u003eInstall CMake\u003c/a\u003e\n* Download OpenCV:\n  1. \u003ca href=\"https://github.com/opencv/opencv/releases\" target=\"_blank\"\u003eGet the latest release of OpenCV\u003c/a\u003e\n  2. Create a folder called 'build' within the OpenCV folder you downloaded\n  3. Open CMake\n  4. Select the downloaded folder as the source file\n  5. Select your new 'build' folder as where to build the binaries.\n  6. Click 'configure', check that 'Unix Makefiles' is the generator for the project and that 'Use default native compilers' is checked.\n  7. Click 'done'.\n  8. When the configuration is done, click 'generate'.\n* Inside your build folder in the downloaded OpenCV folder, run ```make```. (You might need to run ```brew install make gcc```)\n* In the same directory, run ```sudo make install```\n* Open XCode and select 'create new XCode project'.\n* Select the 'Command Line Tool' template under 'macOS'.\n* Name and create your project (Make sure you select 'C++' as the language for the project)\n* Update the Project's search paths:\n  1. In 'Build Settings' search for 'Search Paths' (Make sure you are searching 'All' build settings and not just 'Basic' ones)\n  2. Make sure that 'Always Search User Paths' is set to 'Yes'.\n  3. Add `/usr/local/lib` to 'Framework Search Paths'.\n  4. Add `/usr/local/include` to 'Header Search Paths'.\n  5. Add `\u003cThe path to the build folder you made\u003e/lib` to 'Library Search Paths'.\n* Search the Build Settings for 'Other Linker Flags' and add every file except the 'cv2.so' from the 'lib' folder now inside your 'build' folder from before. (You can drag and drop these into the 'Other Linker Flags' in XCode)\n\nYou can test that you have set up OpenCV correctly by replacing the code in your main.cpp with this code and running it:\n```cpp\n#include \u003ciostream\u003e\n#include \u003copencv2/opencv.hpp\u003e\n\nint main(int argc, const char * argv[]) {\n    std::cout \u003c\u003c \"Open CV Version:\" \u003c\u003c CV_VERSION \u003c\u003c std::endl;\n    return 0;\n}\n```\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnating%2Fvision","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnating%2Fvision","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnating%2Fvision/lists"}