Skip to content

Commit

Permalink
env
Browse files Browse the repository at this point in the history
  • Loading branch information
sronilsson committed Nov 22, 2024
1 parent c8a2c70 commit 4c1daf9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion simba/data_processors/cuda/image.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@

import cv2
import numpy as np
from cupyx.scipy.ndimage import rotate
try:
from cupyx.scipy.ndimage import rotate
except:
from scipy.ndimage import rotate
from numba import cuda

from simba.data_processors.cuda.utils import _cuda_mse
Expand Down

0 comments on commit 4c1daf9

Please sign in to comment.