Skip to content

Commit

Permalink
Fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
aditiiyer committed May 30, 2024
1 parent 42014ec commit 807491d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cerr/utils/imageProc.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,10 @@ def resizeScanAndMask(scan3M, mask4M, gridS, outputImgSizeV, method,\

scanOut3M = np.empty((outputImgSizeV[0], outputImgSizeV[1], scan3M.shape[2]))
for nSlc in range(padded3M.shape[2]):
scanOut3M[:, :, nSlc] = resize(padded3M[:, :, nSlc],
(outputImgSizeV[0], outputImgSizeV[1]),
anti_aliasing=True,
order=orderDict[methodLower])
scanOut3M[:, :, nSlc] = resize(padded3M[:, :, nSlc],
(outputImgSizeV[0], outputImgSizeV[1]),
anti_aliasing=True,
order=orderDict[methodLower])

#Resize mask
if mask4M is not None:
Expand Down

0 comments on commit 807491d

Please sign in to comment.