Jon Cole
Jon Cole
Don't the thumbs-ups count? At any rate, I'd be very grateful if you did this.
Me too thanks. This is going to be pretty important to support now that Xcode 14 supports single targets that can deploy to multiple platforms.
See the setup function here: https://github.com/inspirit/PS3EYEDriver/blob/master/openframeworks/testApp.cpp `eye = devices.at(0)` creates an object for polling the camera data from the camera at index 0. If you want two cameras, just make...
This isn't a driver as in a Windows driver. This is a C++ library that lets you access a PS3 camera directly in an app you're writing. If you want...
Oh yes, I appreciate you pointing that out. I actually receive the camera data as BGR since I'm piping it directly into OpenCV, but then it has to be converted...
You can just point directly at the path where SPM packages are downloaded: ```sh ./credits.py -s "$CONFIGURATION_BUILD_DIR/../../../SourcePackages/checkouts" -o "$SRCROOT/Credits.plist" ```
@svoip Use my PR (#38), which lets you specify multiple paths as inputs. Then you can do something like this: ``` ./credits.py -s "$SRCROOT, $CONFIGURATION_BUILD_DIR/../../../SourcePackages/checkouts" -o "$SRCROOT/Credits.plist" ``` * `$SRCROOT`...
Yeah, this looks to be SPM's behavior so it'd need to be changed by the Swift team. You could evaluate the Package.swift using this repo's Python script somehow, then ignore...
Hi there! I'll see if I can repro, but my gut is telling me this is because you're spelling guify wrong (`guifiy`), so you're importing a function that isn't defined...