{"id":15565392,"url":"https://github.com/dkurt/delta8","last_synced_at":"2025-09-15T14:30:51.906Z","repository":{"id":129100059,"uuid":"108708966","full_name":"dkurt/delta8","owner":"dkurt","description":"Intel Delta 8 course practice","archived":false,"fork":false,"pushed_at":"2017-11-28T06:07:55.000Z","size":350,"stargazers_count":2,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-03T10:44:01.074Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/dkurt.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":"2017-10-29T05:53:04.000Z","updated_at":"2023-12-19T17:41:24.000Z","dependencies_parsed_at":"2023-04-13T10:18:32.231Z","dependency_job_id":null,"html_url":"https://github.com/dkurt/delta8","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dkurt/delta8","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkurt%2Fdelta8","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkurt%2Fdelta8/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkurt%2Fdelta8/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkurt%2Fdelta8/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dkurt","download_url":"https://codeload.github.com/dkurt/delta8/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dkurt%2Fdelta8/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275269386,"owners_count":25435058,"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-09-15T02:00:09.272Z","response_time":75,"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":[],"created_at":"2024-10-02T16:55:41.449Z","updated_at":"2025-09-15T14:30:51.401Z","avatar_url":"https://github.com/dkurt.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Intel Delta 8 course practice\n\n[![Join the chat at https://gitter.im/intel_delta8/Lobby](https://badges.gitter.im/intel_delta8/Lobby.svg)](https://gitter.im/intel_delta8/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge) [![GitPitch](https://gitpitch.com/assets/badge.svg)](https://gitpitch.com/dkurt/delta8)\n\nIntel Delta 8 course practice\n\n## Prerequisites\n### Android Studio\n1. Download and install Adnroid Studio from https://developer.android.com/studio\n1. Create a new project. Keep default settings.\n1. Probably you'll face a error similar to the following:\n\n  ![Android Studio error](images/android_studio_error_1.png)\n\n  Click onto highlighted link to resolve it. Then you may see the next one error:\n\n  ![Android Studio error](images/android_studio_error_2.png)\n\n  Resolve it in the same way.\n\n1. Plug in USB cable connected to device. Make sure that Developers Mode on the\ndevice is enabled. You may find an appropriate instructions for your version of OS.\n\n1. Authorize an Android device.\n\n  * Ubuntu\n    1. Install Android Debug Bridge\n    ```\n    $ sudo apt-get install adb\n    ```\n    1. Check device id\n    ```\n    $ lsusb\n    Bus 003 Device 008: ID 1bbb:9018 T \u0026 A Mobile Phones\n    ```\n\n    1. Add the following line to `/etc/udev/rules.d/51-android.rules` (create it\n    if there is no file). The first 4 symbols are vendor's id and\n    the last one are product's id:\n    ```\n    SUBSYSTEM=\"usb\", ATTRS{idVendor}==\"1bbb\", ATTRS{idProduct}==\"9018\", MODE==\"0666\"\n    ```\n    Note that `sudo` directive may be required. Apply\n    `sudo chmod a+rw /etc/udev/rules.d/51-android.rules` after all above.\n\n    1. Restart `adb` service. Probably, connection should be permitted from the\n    device side (notification will appear). Check that device is detected by `adb devices`.\n    ```\n    $ sudo adb kill-server \u0026\u0026 sudo adb start-server \u0026\u0026 sudo adb devices\n    List of devices attached\n    PEJB25BF4MXAHN4 device\n    ```\n    1. In case of undetected device problem at Android Studio or permissions\n    problems just restart `adb` again and make sure that device is detected.\n\n  * Windows\n    1. No specific settings are required (tested on Windows 10).\n\n1. Launch a project on device by `Run-\u003eRun 'app'`. Select detected device.\n\n  \u003cimg src=\"images/android_studio_ok.png\" width=\"256\"\u003e\n\n### Python\n1. Python\n1. NumPy\n  * `sudo apt-get install python-pip \u0026\u0026 sudo pip install numpy` for Ubuntu\n\n### OpenCV\n1. Download OpenCV source code from https://github.com/opencv/opencv or using git:\n```bash\ngit clone https://github.com/opencv/opencv --depth 1\n```\n\n1. Create a folder for OpenCV's build.\n```bash\ncd /path/to/opencv\nmkdir build \u0026\u0026 cd build\n```\n\n1. Build OpenCV.\n\n  * Ubuntu\n  ```bash\n  cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_LIST=dnn,python2,videoio,highgui /path/to/opencv \u0026\u0026 make -j4\n  ```\n\n  * Windows\n\n    ```bash\n    \"C:\\Program Files\\CMake\\bin\\cmake.exe\" ^\n        -DCMAKE_BUILD_TYPE=Release ^\n        -DBUILD_LIST=dnn,python2,videoio,highgui ^\n        -G \"Visual Studio 14 Win64\" /path/to/opencv\n\n    \"C:\\Program Files\\CMake\\bin\\cmake.exe\" --build . --config Release -- /m:4\n    ```\n\n### Test Python and OpenCV\n```python\nimport cv2 as cv\n\nimg = cv.imread('/path/to/example.png')\ncv.imshow('Hello!', img)\ncv.waitKey()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkurt%2Fdelta8","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdkurt%2Fdelta8","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdkurt%2Fdelta8/lists"}