python使用cv2讀取影像
1.讀取影像
import cv2
img = cv2.imread(path)
若要是讀取影像的灰度圖:
gray = cv2.imread('/home/kesci/input/weather_image1552/訓練集/%d.jpg'%i,cv2.IMREAD_GRAYSCALE)
2. 對影像進行裁剪
img = cv2.resize(img,(100,128))
#第二個引數為尺寸(寬,高)
3. 中值濾波
#R為濾波器大小,為大於等於3的奇數
img = cv2.medianBlur(img,R)
4. 均值濾波
(a,b)為濾波器的長和寬
img3 = cv2.blur(gray,(a,b))
5. HOG特徵提取
hog = cv2.HOGDescriptor()
tz = hog.compute(img,winStride = (64,64),padding = (16,16))
相關文章
- cv2 影像的讀取
- 影像讀取庫合集——cv2, PIL, skimage與numpy, pytorch(ToPILimage)PyTorch
- 轉:python使用opencv(cv2)在影像上繪製點線等PythonOpenCV
- 影像的讀取,
- Python使用Argparse讀取命令引數Python
- cv2在影像上的應用-續2
- Python-使用openpyxl讀取excel內容PythonExcel
- python 使用字典讀取CSV檔案Python
- 使用Python和OpenMV讀取條形碼Python
- Python影像讀寫方法對比Python
- 【2】Kaggle 醫學影像資料讀取
- 在Python以陣列的方式讀取影像,並轉為Torch張量Python陣列
- python 讀取PDF表格Python
- Python讀取Excel表格PythonExcel
- 使用Python讀取PlantUML匯出的XMI檔案Python
- 如何使用Python讀取文字檔案並回答問題?Python
- python讀取大檔案Python
- python對Excel的讀取PythonExcel
- python小白檔案讀取Python
- python 讀取文字檔案Python
- python列表讀取的方法Python
- python讀取MySQL資料PythonMySql
- OpenCV-Python 視訊讀取OpenCVPython
- Python讀取YAML配置資料PythonYAML
- python讀取串列埠 資料Python串列埠
- python如何讀取大檔案Python
- VB.net(C#同理)使用 ServiceStack.Redis 二進位制儲存、讀取影像C#Redis
- DNS預讀取的使用DNS
- [python] 資料夾所有檔案讀取,正則化,json使用PythonJSON
- 基於R語言的raster包讀取遙感影像R語言AST
- Python讀取Ansible playbooks返回資訊Python
- Python中CSV讀取和轉換Python
- python讀取json格式的標註PythonJSON
- Python 讀取HDF5檔案Python
- python opencv讀取網路圖片PythonOpenCV
- Jetson_MPU6050_DMP_Python讀取Python
- python怎麼讀取配置檔案Python
- python解壓並讀取檔案Python