感謝趨勢科技張明正 (Steve) 董事長和其團隊的努力。
10/30/2018
10/26/2018
由田新技的自動光學檢測技術
王郁倫,台灣最大機器視覺檢測商搶賣AI軟體,為何不怕騰訊、IBM科技巨頭競爭?,數位時代,2018.10.25
自動光學檢測(Automatic Optical Inspection,AOI)是利用機器視覺作為檢測技術的產業,由於光學影像檢測系統高速、失誤率低,不需要輪班,比人工更自動化,已經成為半導體業如IC載板、顯示器業者、封裝測試業重要設備,而「由田」正是台灣營收規模最大的AOI業者。...
到底缺陷分析系統有什麼威力,讓大廠小廠都看上?鄒嘉駿說,由田設備賣出累積超過2500台,這些機台所需要複檢(VRS)操作人員約4000人,若改採用AI VRS的話,客戶可以節省70%以上人力。
也就是說,原本一台設備放在客戶端,客戶要雇三人負責維修,但導入AI VRS,可以節省兩名人力,只要聘1人管理即可。
客戶端若一天兩班運作,就等於幫客戶省一天四人費用,以一個人月薪三萬元,加上退休保險等費用,一台三年總計約可以省300萬元,那麼由田可以用省下的費用以五折或七折跟客戶收取AI軟體費,他也估這部分老客戶買AI軟體市場產值約25到30億元。...
儘管2019年AI貢獻營收還不多,對由田卻是關鍵的一步。「 客戶對軟體竟然要收錢這件事要充分接受,還是需要時間的。 」鄒嘉駿說,台灣客戶都是製造業,即使瞭解上面所說可以節省的人力成本,但對軟體要付一筆錢,還是很難接受,現在拿到的客戶,也都花了至少八個月場測後才願意購買。
10/23/2018
The American Economy Is Rigged by Joseph E. Stiglitz
Joseph E. Stiglitz, The American Economy Is Rigged: And what we can do about it, Scientific American, November 2018
America has long outdone others in its level of inequality, but in the past 40 years it has reached new heights. Whereas the income share of the top 0.1 percent has more than quadrupled and that of the top 1 percent has almost doubled, that of the bottom 90 percent has declined. Wages at the bottom, adjusted for inflation, are about the same as they were some 60 years ago! In fact, for those with a high school education or less, incomes have fallen over recent decades. Males have been particularly hard hit, as the U.S. has moved away from manufacturing industries into an economy based on services....
10/17/2018
修訂 (OpenCV) cv.VideoCapture 的參考範例
opencv 上的參考範例
github 上的 vtest.avi 無法使用,所以以下將改用此處的 drop.avi。
當程式讀到檔案的最後,執行 gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY) 會出現錯誤
import numpy as np
import cv2 as cv
cap = cv.VideoCapture('vtest.avi')
while(cap.isOpened()):
# Capture frame-by-frame
ret, frame = cap.read()
# Our operations on the frame come here
gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY)
# Display the resulting frame
cv.imshow('frame',gray)
if cv.waitKey(1) & 0xFF == ord('q'):
break
cap.release()
cv.destroyAllWindows()
github 上的 vtest.avi 無法使用,所以以下將改用此處的 drop.avi。
當程式讀到檔案的最後,執行 gray = cv.cvtColor(frame, cv.COLOR_BGR2GRAY) 會出現錯誤
error: ..\..\..\modules\imgproc\src\color.cpp:7456: error: (-215) scn == 3 || scn == 4 in function cv::ipp_cvtColor看了 stackoverflow 上的說明,還是不行。只好找出 cv.VideoCapture 中,read() 的說明和使用。
訂閱:
文章 (Atom)
