dirac-institute / kbmod

KBMOD (Kernel-Based Moving Object Detection)
BSD 2-Clause "Simplified" License
46 stars 14 forks source link

Make StampCreator into functions instead of a class of static functions. #714

Open jeremykubica opened 2 months ago

jeremykubica commented 2 months ago

The StampCreator class in search/stamp_creator.cpp doesn't do anything that requires it to be a class and just adds overhead when we are using it from Python (creating an unneeded object). We should remove the class and just call the functions directly.