符合中小企业对网站设计、功能常规化式的企业展示型网站建设
本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...
商城网站建设因基本功能的需求不同费用上面也有很大的差别...
手机微信网站开发、微信官网、微信商城网站...
在学习tensorflow的过程中,有一个问题,tensorflow在训练的过程中读取的是二进制图像数据库文件,而不是图像文件,因此
成都网站制作、成都网站设计的关注点不是能为您做些什么网站,而是怎么做网站,有没有做好网站,给创新互联建站一个展示的机会来证明自己,这并不会花费您太多时间,或许会给您带来新的灵感和惊喜。面向用户友好,注重用户体验,一切以用户为中心。在进行训练、测试之前需要将图像文件转换为二进制格式。
下面是我在ubuntu中使用python+OpenCV读取图像并转换为二进制格式文件的代码。
#coding=utf-8 ''' Created on 2016年3月24日 使用Opencv读取图像将其保存为二进制格式文件,再读取该二进制文件,转换为图像进行显示 @author: hanchao ''' import cv2 import numpy as np import struct image = cv2.imread("test.jpg") #imageClone = np.zeros((image.shape[0],image.shape[1],1),np.uint8) #image.shape[0]为rows #image.shape[1]为cols #image.shape[2]为channels #image.shape = (480,640,3) rows = image.shape[0] cols = image.shape[1] channels = image.shape[2] #把图像转换为二进制文件 #python写二进制文件,f = open('name','wb') #只有wb才是写二进制文件 fileSave = open('patch.bin','wb') for step in range(0,rows): for step2 in range(0,cols): fileSave.write(image[step,step2,2]) for step in range(0,rows): for step2 in range(0,cols): fileSave.write(image[step,step2,1]) for step in range(0,rows): for step2 in range(0,cols): fileSave.write(image[step,step2,0]) fileSave.close() #把二进制转换为图像并显示 #python读取二进制文件,用rb #f.read(n)中n是需要读取的字节数,读取后需要进行解码,使用struct.unpack("B",fileReader.read(1))函数 #其中“B”为无符号整数,占一个字节,“b”为有符号整数,占1个字节 #“c”为char类型,占一个字节 #“i”为int类型,占四个字节,I为有符号整形,占4个字节 #“h”、“H”为short类型,占四个字节,分别对应有符号、无符号 #“l”、“L”为long类型,占四个字节,分别对应有符号、无符号 fileReader = open('patch.bin','rb') imageRead = np.zeros(image.shape,np.uint8) for step in range(0,rows): for step2 in range(0,cols): a = struct.unpack("B",fileReader.read(1)) imageRead[step,step2,2] = a[0] for step in range(0,rows): for step2 in range(0,cols): a = struct.unpack("b",fileReader.read(1)) imageRead[step,step2,1] = a[0] for step in range(0,rows): for step2 in range(0,cols): a = struct.unpack("b",fileReader.read(1)) imageRead[step,step2,0] = a[0] fileReader.close() cv2.imshow("source",image) cv2.imshow("read",imageRead) cv2.waitKey(0)
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。