2019年3月31日 星期日

[python]time AND subprocess function

簡單的 time 範例:

import time
now=time.localtime()
print(now)
print(now.tm_hour)
print(now.tm_min)
print(now.tm_sec)

不錯的文章:
Python 日期和時間
http://www.runoob.com/python/python-date-time.html

Python多进程(1)——subprocess与Popen()

Cheatsheet for Python subprocess

2019年3月28日 星期四

[python] feedparser

不太了解,先記著:

Python解析RSS(feedparser安裝與使用)
https://www.twblogs.net/a/5c600b1fbd9eee06ef3712ce


Using Feedparser in Pythonhttps://www.pythonforbeginners.com/feedparser/using-feedparser-in-python


嘗試建立gamil  有新郵件通知

USERNAME="mymain@gmail.com" 
PASSWORD="mypassword" 
PROTO="https://" 
SERVER="mail.google.com"
 PATH="/gmail/feed/atom"

newmails = int(feedparser.parse( PROTO + USERNAME + ":" + PASSWORD + "@" + SERVER + PATH )["feed"]["fullcount"])

一直都失敗,找不到原因 ???

2019年3月20日 星期三

[python]攝影機檔案儲存

cap=cv2.VideoCapture(0)

#decode
fourcc=cv2.VideoWriter_fourcc('I', '4', '2', '0')

#image save
out=cv2.VideoWriter('out.avi',fourcc,20.0,(640,480))

while(cap.isOpened()):
    ret,frame=cap.read()
    if ret==True:
        out.write(frame)
        cv2.imshow('frame',frame)
        if cv2.waitKey(1)& 0xFF==ord('q'):
            break
    else:
        break

cap.release()
out.release()
cv2.destroyAllWindows()

2019年3月19日 星期二

[python]開啟攝影機

cap=cv2.VideoCapture(0)
while(cap.isOpened()):
    ret,frame=cap.read()
    cv2.imshow('frame',frame)
    if cv2.waitKey(1)& 0xFF==ord('q'):
            break

2019年3月7日 星期四

[python]使用opencv 秀圖

在 visual studio ,安裝 opencv,必須在安裝 packeage 的搜尋地方打入 opencv-python 才行

簡單的程式:

import cv2
import numpy as np
import os
mywd="c:\pydata"
os.chdir(mywd)
cv2.namedWindow("test_show",1)
img=cv2.imread("1.jpg",1)
cv2.imshow("test_show",img)
cv2.waitKey(0)  ==>沒寫這欄,只會有框,不會秀圖........

成功!!!

2019年3月5日 星期二

[python]在visual studio 中安裝套件

不錯的文章:

在您的 Python 環境中安裝套件https://docs.microsoft.com/zh-tw/visualstudio/python/tutorial-working-with-python-in-visual-studio-step-05-installing-packages?view=vs-2017