Hi,
I’m using this method in Python for Cropping:
cropped_frame = frame[y:y + height, x:x + width]
I read about HailoCropper - is it possible to use it in Python? I couldn’t find any code snippets …
I suppose cropping directly on the AI Chip would it be much faster than the usual method?
Thanks
Hi @Darklord_Ice
If you are just extracting a part of a matrix and not doing any AI model related processing on it, doing the cropping on AI chip is not necessarily faster. These types of operations are typically done on the host CPU. Maybe there is something more to the use case I am missing.