libmir / dcv

Computer Vision Library for D Programming Language
http://dcv.dlang.io/
Boost Software License 1.0
92 stars 18 forks source link

Several improvements and bugfixes on plotting, and starting to make things nogc #154

Closed aferust closed 1 year ago

aferust commented 1 year ago

looks like more work is needed to get rid of the Image class without breaking the compatibility of too many existing codes. The final goal should be GC-free video loops, such as:

auto fig = imshow(...);
while(readFrames){
    ....
    fig.draw(aNewFrame);
    ....
    waitkey(k);
}