Lee Probert
Lee Probert
+1 Yep and me.
I've not tried it before. I can't think what it could be. It was in the sim but the video tag worked.
Interesting development ... in the official package it only works with Depth and the Infrared Y8 stream. Trying to access Color fails with an error: ExternalException: rs2_pipeline_start_with_config(pipe:000001CCB1986E00, config:000001CCB1986720) Rethrow as...
I'm going to have another go at it and will post the results 👍
@kitschpatrol - fantastic work! I will try this over the weekend to see if I can get it working too. 👍
Actually still getting errors with `typescript`: `Could not find a declaration file for module 'react-canvas-draw'` - the recommended resolution (above) didn't work after all.
The solution for `typescript` is to add a file called `type.d.ts` and put this line in it: `declare module 'react-canvas-draw';` - that will be enough for the compiler to accept...
If you need to start doing anything useful with this component in Typescript you'll have to start declaring all the types. My declaration file is currently: ``` import CanvasDraw from...
This is how you can bypass the compiler issues for just that one line of code: ``` // @ts-ignore: Unreachable code error let imageURL = canvasDrawRef.getDataURL('png', false, '0xffffff'); ```
No luck yet? I know that my OpenFrameworks ofxKinect demo used to work before I upgraded my mac to el Capitan. I think it must be something to do with...