Matthew Grivich

Results 78 comments of Matthew Grivich

On 7/24/2018 5:49 AM, Tristan Stenner wrote: > We already need to break the API for the next version, > We are not really breaking the API. We are fixing...

> A target audience of people using LSL for inter-process communication are people that are doing neural signal processing and real-time feedback (brain-computer interfaces). Many of these users that I've...

I would be surprised if the current implementation has significant performance overhead. If we discover excessive copies being made, those should be replaced with pass-by-reference.

This is what my old VideoStream app uses: lsl_streaminfo info = lsl_create_streaminfo("VideoStream_0","VideoStream_0",1,requestedFrameRate,cft_int32,""); lsl_xml_ptr desc = lsl_get_desc(info); lsl_xml_ptr chn = lsl_append_child(desc, "channels"); lsl_append_child_value(chn, "name","frame"); lsl_append_child_value(chn,"unit","number"); lsl_xml_ptr sync = lsl_append_child(desc, "synchronization"); lsl_append_child_value(sync,...

I thought Clement Lee was working on this now. Has progress ceased? On 2/27/2017 2:36 PM, David Medine wrote: > I haven't actually looked at this for a while, so...

I'm currently out of country, but there's a newer version of David's solution that has a working GUI. It utilizes Windows media foundation so point grey cameras are not supported....

I confirmed that the time between Presentation events vary between a bit less than 1 second and a bit more than 3 (except for the last one, that is more...

After investigating this issue with the data provided by Jessica, we ascertained that load_xdf.m and eeg_load_xdf.m are not returning the same values for timestamps in an irregular event stream. load_xdf.m...

Yes, I checked with a fresh download of load_xdf and eeg_load_xdf. Some more information: if you use the options to only load the 'Presentation' marker stream, the function errors out....

On 5/2/2018 2:39 PM, Chadwick Boulay wrote: > > @mgrivich , a couple questions for you. > > What's more important? That the event 'latency' is correct, or that >...