Dmitry Ivanov

Results 9 comments of Dmitry Ivanov

I don't own the system anymore. Will gladly make someone else a maintainer.

Can you show me the code you used?

Maybe they've changed something else along with auth endpoints. Can you fetch `thumbnail`?

What are you trying to achieve? Do you want to record video from your camera or access a previously recorded clip?

Try using `blink.getVideos()` with the latest version - 4.1.4

Hi guys, @peterbraden as far as I can see, Matrix::FindContours in Matrix.cc(https://github.com/peterbraden/node-opencv/blob/master/src/Matrix.cc) just returns new instance of Contour class. I'm facing the same problem with 0 returned and seems that...

I've possibly found the reason: First, the cv::findContours call was removed in this commit (line 1234) https://github.com/peterbraden/node-opencv/commit/19058ecea9bffc6966f379ee70ea65b9503bb6c5 And the rest was removed here https://github.com/peterbraden/node-opencv/commit/34eb174ae89af61a42b303cf67af21f1f2a1c716

I've managed to make it working with adding this into Matrix::FindContours (Matrix.cc): ``` /* + */ Matrix *self = ObjectWrap::Unwrap(args.This()); Local conts_to_return= NanNew(Contour::constructor)->GetFunction()->NewInstance(); /* + */ Contour *contours = ObjectWrap::Unwrap(conts_to_return);...

Another issue is that `responseReducer` isn't engaged either so the mocks should return the data in the shape the response reducer would have it, which could be used as a...