warnings.filterwarnings("ignore") # ##使用交互式指令,plt.show()可省略 # path = "D:\\pytorch文件\\Rice_Image_Dataset" # data_list = os.listdir(path) # #print(data_list) # index = 1 # plt.figure(figsize=(12,3)) # for cur_dir in data_list: # if not cur_dir.endswith(".txt"): # for data in os.listdir(os.path.join(path,cur_dir)): # img = cv2.imread(os.path.join(path,cur_dir,data)) # #print(img.shape) # plt.subplot(1,5,index) # index += 1 # plt.title(cur_dir) # plt.imshow(img) # break # plt.show()、
时间: 2024-04-27 21:23:23 浏览: 91
VS错误提示:To disable deprecation, use _CRT_SECURE_NO_WARNINGS.
这段代码是用来读取一个文件夹下的图像数据,并展示其中的一些图像。其中,使用了Matplotlib库中的subplot函数,将多个图像展示在同一个窗口中。同时,使用了OpenCV库中的imread函数,读取图像数据。还有一个路径path的变量,是用来表示图像数据所在的文件夹路径的。在展示图像之前,使用了warnings.filterwarnings("ignore")函数来忽略警告信息。最后,使用plt.show()函数来展示图像。
阅读全文