多平台统一管理软件接口,如何实现多平台统一管理软件接口
364
2022-09-03
python resize(python怎么读)
import sysimport ossys.path.append('/usr/local/lib/python2.7/site-packages')sys.path.append('/usr/lib/python2.7/dist-packages')import matplotlib.pyplot as pltimport cv2def resizeimg(filename): img=cv2.imread(filename) shape=img.shape w=shape[1] h=shape[0] ww=w hh=h bresize=False if w > h and w > 800: ww=800 hh=h/(w/800) bresize=True if h > w and h > 800: hh=800 ww=w/(h/800) bresize=True if bresize: print filename img=cv2.resize(img,(ww,hh)) cv2.imwrite(filename,img) for r, d, files in os.walk( '/var/Public/img/' ): for ffile in files: if ffile.endswith( 'jpg' ): resizeimg(r+'/'+ffile)
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~