I am following a tutorial to implement YoloV4 in the implementation the author has used this:
cv2.imread(os.path.join(self.folder_path, img_path))[:, :, ::-1]
Whats the point of the indexing at the end?
I am following a tutorial to implement YoloV4 in the implementation the author has used this:
cv2.imread(os.path.join(self.folder_path, img_path))[:, :, ::-1]
Whats the point of the indexing at the end?