Skip to content

Commit

Permalink
fix: 'numpy' has no attribute 'astype' (#13554)
Browse files Browse the repository at this point in the history
  • Loading branch information
laolitou authored Jul 31, 2024
1 parent 358560f commit cab3fcb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def execute(self, requests):
image_list[index] = cv2.rotate(
image_list[index].astype(np.float32), 1
)
image_list[index] = np.astype(np.uint8)
image_list[index] = image_list[index].astype(np.uint8)

rec_pre_tensors = self.rec_preprocessor.run(image_list)
rec_dlpack_tensor = rec_pre_tensors[0].to_dlpack()
Expand Down

0 comments on commit cab3fcb

Please sign in to comment.