Andrew Wagner

Results 27 issues of Andrew Wagner

Is BBQueue limited to buffering bytes? If so (and I think it is), it's an important limitation to mention in the top-level README. I somehow made it through the video,...

Badly trained algorithms might not return detections at all. Tide should return meaningful results in this case instead of crashing on line: https://github.com/dbolya/tide/blob/49a5d2a4aeb56795e93a3ed7cc7e6d25757bb4c1/tidecv/ap.py#L150 With a quick search, I see several...

mypy did not complain because it considers int a subtype of float, for better or worse: https://mypy.readthedocs.io/en/stable/duck_type_compatibility.html but it bites your callers.

To start, the type annotations in your code are a huge advantage of this over pycocotools; thanks for adding annotations! That said, some arguments to API functions are not fully...

You have this nice Data._prepare_mask() that it currently just a NOP... did you mean to actually compress masks in there?

I'm evaluating ispc for writing image filters at my company. I've read through all of the documentation, but haven't written anything yet, and I'm certainly not qualified for hacking on...

Standard Library

It would be interesting to explain the README the benefit of pip-compile vs. doing a pip install in a fresh environment followed by a pip freeze to dump out the...

needs more info
docs
help wanted
enhancement
needs discussion

**Is your feature request related to a problem? Please describe.** I'm a first time user, and would like to profile a region of code on a non-trivial python application. There's...

**Is your feature request related to a problem? Please describe.** 3D object features well below the resolution of the sensor get filtered away. **Describe the solution you'd like** Please provide...

Enhancement

I made the following usage mistake: I used another json library (orjson) to convert to and from JSON, thinking I could get away with only using marshmallow for deserialization. orjson...