Jon McGuire
Jon McGuire
Anybody know who is responsible for WiFi for the various auto manufacturers? Chevy, Ford, all of them offer WiFi these days. (I'm not so concerned about somebody snooping traffic, but...
As time goes on, SQL server releases add or remove certain features. Similarly, this sink has many defaults that exist purely for backwards-compatibility reasons, despite learning later that other defaults...
For supporting the more complex SQL column types (`image` or `varbinary`, for example) in specialized logging scenarios, I've been considering a callback mechanism for rendering property values. The only drawback...
The library uses `List` buffers and I believe the `List` default constructor only allocates enough space for 10 entries. Given the size of MMAL buffers and camera frames, we should...
The library is heavily array-dependent, and due to the nature of image handling, we're often allocating very large arrays on the large object heap. The [`ArrayPool`](https://docs.microsoft.com/en-us/dotnet/api/system.buffers.arraypool-1?view=netcore-3.1) API may help alleviate...
I have an idea that should be relatively easy to implement: use the same cell-based parallel processing technique that I built for motion detection and convolution to invoke a per-pixel...
Hi Ian, while we were working on the convolution changes, you commented ([here](https://github.com/techyian/MMALSharp/pull/175#discussion_r502790680)) that horizontal resolution is padded to 32 bytes and vertical is padded to 16 bytes. At the...
Hi Ian, this a quick-fix to remove the zero-length file that the circular buffer leaves behind after stream disposal. It also handles the edge case of disposal while recording is...
In #172 you suggested that a Connection callback handler might allow me to write a "filter" in the middle of the pipeline, such as: camera -> resizer -> (FILTER) ->...
This is another spinoff from PR #175. While testing those changes, I was surprised to see my "jpg" file on ramdisk briefly jump to the raw data's 3.5MB size, then...