{"id":27299961,"url":"https://github.com/diwi/ps3eye","last_synced_at":"2025-04-12T00:50:12.195Z","repository":{"id":142000563,"uuid":"86230185","full_name":"diwi/PS3Eye","owner":"diwi","description":"Sony PS3Eye Java/Processing Library.","archived":false,"fork":false,"pushed_at":"2017-04-20T03:30:47.000Z","size":41,"stargazers_count":18,"open_issues_count":2,"forks_count":8,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-12T00:50:05.073Z","etag":null,"topics":["libusb","processing","ps3eye","ps3eye-driver"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diwi.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}},"created_at":"2017-03-26T12:19:15.000Z","updated_at":"2023-11-22T02:36:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"90f99782-85d9-42d8-9fd7-75e1cd56520e","html_url":"https://github.com/diwi/PS3Eye","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diwi%2FPS3Eye","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diwi%2FPS3Eye/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diwi%2FPS3Eye/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diwi%2FPS3Eye/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diwi","download_url":"https://codeload.github.com/diwi/PS3Eye/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248501902,"owners_count":21114681,"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":["libusb","processing","ps3eye","ps3eye-driver"],"created_at":"2025-04-12T00:50:11.713Z","updated_at":"2025-04-12T00:50:12.181Z","avatar_url":"https://github.com/diwi.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"![PS3Eye Header](http://thomasdiewald.com/processing/libraries/PS3Eye/PS3Eye_header.jpg)\n\n# PS3Eye\nA Java/Processing Library for the PS3Eye USB-Camera.\n\nThe library-core is mostly a Java-port of the [PS3EYEDriver](https://github.com/inspirit/PS3EYEDriver) project.\n\nJava Demo [PS3Eye_GUI.zip](https://github.com/diwi/PS3Eye/files/939853/PS3Eye_GUI.zip)\n\n![PS3Eye Header](http://thomasdiewald.com/processing/libraries/PS3Eye/PS3Eye_capture.jpg)\n\n\n\u003cbr\u003e\n\n## Download\n+ [Releases](https://github.com/diwi/PS3Eye/releases)\n+ [PS3Eye Website](http://thomasdiewald.com/processing/libraries/PS3Eye/)\n+ Processing IDE -\u003e Library Manager\n\nJavaDoc: http://thomasdiewald.com/processing/libraries/PS3Eye/reference/index.html\n\n\n\u003cbr\u003e\n\n## Controls\n```\n  Camera Controls\n    gain       =    20 [0,  63]\n    exposure   =   120 [0, 255]\n    sharpness  =     0 [0,  63]\n    hue        =   143 [0, 255]\n    brightness =    20 [0, 255]\n    contrast   =    37 [0, 255]\n    blueblc    =   128 [0, 255]\n    redblc     =   128 [0, 255]\n    greenblc   =   128 [0, 255]\n    autogain   = false     \n    awb        = false\n    flip_h     = false\n    flip_v     = false\n    ...\n  \n  Resolution\n    PS3Eye.Resolution.VGA  ... framerate[2,  75]\n    PS3Eye.Resolution.QVGA ... framerate[2, 187]\n  \n  PixelFormat\n    PS3Eye.Format.RGB\n    PS3Eye.Format.BGR\n    PS3Eye.Format.BAYER\n```\n\n\u003cbr\u003e\n\n## Installation, Processing IDE\n\n- Download [Processing 3](https://processing.org/download/?processing)\n- Install PS3Eye via the Library Manager.\n- Or manually, unzip and put the extracted PS3Eye folder into the libraries folder of your Processing sketches. Reference and examples are included in the PS3Eye folder. \n\n#### Platforms\nWindows, Linux, MacOSX\n\n\u003cbr\u003e\n\n## Processing Example\n\n```java\nimport com.thomasdiewald.ps3eye.PS3EyeP5;\n\nPS3EyeP5 ps3eye;\n\npublic void settings() {\n  size(640, 480);\n}\n\npublic void setup() {\n  ps3eye = PS3EyeP5.getDevice(this);\n\n  if (ps3eye == null) {\n    System.out.println(\"No PS3Eye connected. Good Bye!\");\n    exit();\n    return;\n  } \n\n  ps3eye.start();\n}\n\npublic void draw() {\n  image(ps3eye.getFrame(), 0, 0);\n}\n```\n\n\u003cbr\u003e\n\n## Installation, PS3Eye Driver\n\n[usb4java](http://usb4java.org/) (based on [libusb](http://libusb.info/)) is used to access PS3Eye USB-device.\n\nSo, to use the PS3Eye-Library you need to install the corresponding PS3Eye driver for your OS.\n\n[How_to_use_libusb_on_Windows](https://github.com/libusb/libusb/wiki/Windows#How_to_use_libusb_on_Windows)\n\n#### How i did it (Windows 10, x64)\n1) plugin PS3Eye-USB-Camera\n2) open the Device Manager and open [Zadig](http://zadig.akeo.ie/)\n3) make sure no driver is installed (uninstall if necessary) and then use Zadig to install **libus-win32**\n\n![PS3Eye_libusb_driver_install](http://thomasdiewald.com/processing/libraries/PS3Eye/PS3Eye_libusb_driver_install.jpg)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiwi%2Fps3eye","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiwi%2Fps3eye","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiwi%2Fps3eye/lists"}