2014年7月15日 星期二

Standard for National Communications Commission in Taiwan

Certification Standard

  1. LP0002
  2. PLMN01 (GSM and DCS Mobile Phone Standard)
  3. PLMN02
  4. PLMN08
  5. PLMN09 (3G Mobile Phone Standard)
  6. PLMN10 (4G LTE Mobile Phone Standard)
  7. IS2032-1
  8. IS2045-0
  9. IS2037-0
  10. IS2050
  11. CNS14958-1
  12. CNS14959

 PLMN10 (2013/10/15)

5.14 Public Warning System,PWS
 5.14.1 本項測試適用手持式行動臺設備。
 5.14.2 公眾告警廣播簡訊功能應具有下列通道:
  5.14.2.1 通道4370為顯示中文公眾告警廣播簡訊,且不可關閉。
  5.14.2.2 通道4380為業者測試公眾告警廣播簡訊。
  5.14.2.3 通道4383為顯示英文公眾告警廣播簡訊,且不可關閉。
 5.14.3 設備應具有告警聲響信號,並符合下列規定:
  5.14.3.1 告警聲響信號型式為2段聲響,並間隔0.5秒。每段聲響為2秒聲響後有2次1秒聲響,每次聲響間隔0.5秒。
  5.14.3.2 告警聲響信號須符合下列第5.14.3.2.1節或第5.14.3.2.2節之規定:
   5.14.3.2.1 設備具有混音能力,必須同時以基頻853Hz和960Hz混音產生聲響傳送。
   5.14.3.2.2 設備只有單音能力,必須以960Hz單音產生聲響傳送。
  5.14.3.3 告警聲響信號僅限使用於公眾告警廣播簡訊功能。
 5.14.4 設備應具有告警振動信號,並符合下列規定:
  5.14.4.1 告警振動信號型式為2段振動,並間隔0.5秒。每段振動為2秒振動後有2次1秒振動,每次振動間隔0.5秒。
  5.14.4.2 告警振動信號僅限使用於公眾告警廣播簡訊功能。
  5.14.4.3 告警聲響信號與告警振動信號間得不同步。
5.14.5 公眾告警廣播簡訊之接收處理必須優先於設備其他功能。

2014年7月14日 星期一

Patentable Invention

Copyright- Expression of idea
Patent- Embodiment of idea


Patentability and Patent Eligible

35 U.S.C. 101 Inventions patentable. “Whoever invents or discovers any new and useful process, machine, manufacture, or composition of matter, or any new and useful improvement thereof, may obtain a patent therefor, subject to the conditions and requirements of this title.”

MacKay Co. v. Radio Corp., 306 U.S. 86,94(1939).

A.MT Test (Machine-or-Transformation Test)
Process  is tied to a particular machine or apparatus
Process ransforms a particular article into a different state or thing




Non-Patentability

1. abstract ideas

"principle, in the abstract, is a fundamental truth; an original cause; a motive; these cannot be patented, as no one can claim in either of them an exclusive right.", LeRoy v. Tatham, 14How.156,175 (1853).

Rubber-Tip Pencil Co. v. Howard, 20wall.498,507(1874).

2. natural phenomena
Association for Molecular Pathology v. Myriad Genetics, 569 U.S. 12-398 (2013).

3. natural products

4. laws of nature
Mayo Collaborative Services v. Prometheus Laboratories, Inc. 566 U.S. 10-1150(2012).


2014年7月1日 星期二

Modify OpenCV Tutorial Project

OpenCV Tutorial 2 – Mixed Processing




1. Enter the src folder, and then open Tutorial2Activity.java

2. At the top of the file, add:

private static final int VIEW_MODE_THRESH = 3;
private MenuItem mItemPreviewThresh;


3.In the method “onCreateOptionsMenu”, add:

mItemPreviewThresh = menu.add(“Thresh.”);

4.In the method “onCameraFrame”, add:


case VIEW_MODE_THRESH:
mRgba = inputFrame.rgba();
       int maxValue = 255;
       int blockSize = 61;
       int meanOffset = 15;
       Imgproc.adaptiveThreshold(
              inputFrame.gray(),
              mIntermediateMat,
              maxValue,
              Imgproc.ADAPTIVE_THRESH_MEAN_C,
              Imgproc.THRESH_BINARY_INV,
              blockSize,
              meanOffset );
       Imgproc.cvtColor( mIntermediateMat, mRgba, Imgproc.COLOR_GRAY2RGBA, 4 )


5.In the method “onOptionsItemSelected”, add:
else if (item == mItemPreviewThresh) {
mViewMode = VIEW_MODE_THRESH;
}