Skip to content

Commit

Permalink
CV2 Colour Ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
JBeckwith committed Jun 7, 2024
1 parent 1785eeb commit 8300689
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DAB_Analysis_Functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def imread(self, file):
Returns:
img (np.2darray): array"""
img = cv2.imread(file)
img = cv2.imread(file, cv2.COLOR_BGR2RGB)
return img

def im2double(self, img):
Expand Down

0 comments on commit 8300689

Please sign in to comment.