Let’s say you want to store a list of integers in Python: list_of_numbers = [] for i in range(1000000): list_of_numbers.append(i) Those numbers can easily fit in a 64-bit integer, so one would hope Python would store those million integers in no more than... (more…)
Read more »
It is no secret that the world is in constant state of flux. Everything is changing every-time. The COVID-19 pandemic has successfully accelerated the rate of change of humanity towards digitization of processes thus it calls for people to speak the langu... (more…)
Read more »
Downsample labeled segmentations by taking the mode of 2x2 blocks using only Python and numpy. This was first used in a pipeline for generating MIP levels on AI segmentations of brain tissue. (more…)
Read more »