<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hant-TW">
	<id>http://zh-tw.wiki.theimagingsource.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Verna</id>
	<title>The Imaging Source Knowledgebase Taiwanese - 使用者貢獻 [zh-tw]</title>
	<link rel="self" type="application/atom+xml" href="http://zh-tw.wiki.theimagingsource.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Verna"/>
	<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php/%E7%89%B9%E6%AE%8A:%E4%BD%BF%E7%94%A8%E8%80%85%E8%B2%A2%E7%8D%BB/Verna"/>
	<updated>2026-05-26T10:52:01Z</updated>
	<subtitle>使用者貢獻</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Imprint&amp;diff=202</id>
		<title>Imprint</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Imprint&amp;diff=202"/>
		<updated>2025-01-02T07:33:45Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== 負責本網站的公司 ==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
 &#039;&#039;&#039;公司名稱&#039;&#039;&#039;&lt;br /&gt;
 The Imaging Source Asia 德商兆鎂新有限公司&lt;br /&gt;
 台灣新北市汐止區中興路43-7/8號3樓, 郵遞區號 221012&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;電話&#039;&#039;&#039;&lt;br /&gt;
 +886 2 2792 3153&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;網站&#039;&#039;&#039;&lt;br /&gt;
 www.theimagingsource.com&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;電子郵件&#039;&#039;&#039;&lt;br /&gt;
 sales-asia@theimagingsource.com&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_Jupyterlab%E9%96%8B%E7%99%BC&amp;diff=201</id>
		<title>使用 IC Imaging Control 4 SDK 進行 Jupyterlab開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_Jupyterlab%E9%96%8B%E7%99%BC&amp;diff=201"/>
		<updated>2024-12-23T02:49:38Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 安裝環境 ===&lt;br /&gt;
&lt;br /&gt;
* 安裝 JupyterLab 開啟終端機或命令提示字元，並輸入以下指令安裝 Jupyterlab： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
pip install jupyterlab&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 安裝 IC Imaging Control 4 SDK 開啟終端機或命令提示字元，並輸入以下指令安裝 IC Imaging Control 4 SDK： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
python3 -m pip install imagingcontrol4&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
* 安裝相機驅動 [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/ GigE Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodu3vwintis-1.0.0.224/ /  USB3 Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodlegacywintis-2.0.0.387/ / 非 GenICam 相機的 GenTL Producer (BETA)]&lt;br /&gt;
&lt;br /&gt;
* 範例可透過連結下載 https://github.com/TheImagingSource/ic4-examples/tree/master/python&lt;br /&gt;
* 啟動 JupyterLab ，在終端機或命令提示字元輸入： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
jupyter lab&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;瀏覽器會自動開啟一個新的頁面，為 JupyterLab 的介面。[[檔案:Jupyter.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
&lt;br /&gt;
=== 擷取影像的範例: ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import imagingcontrol4 as ic4&lt;br /&gt;
ic4.Library.init()&lt;br /&gt;
&lt;br /&gt;
# Create a Grabber object&lt;br /&gt;
grabber = ic4.Grabber()&lt;br /&gt;
&lt;br /&gt;
# Open the first available video capture device&lt;br /&gt;
first_device_info = ic4.DeviceEnum.devices()[0]&lt;br /&gt;
grabber.device_open(first_device_info)&lt;br /&gt;
&lt;br /&gt;
# Set the resolution to 640x480&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)&lt;br /&gt;
&lt;br /&gt;
# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.&lt;br /&gt;
sink = ic4.SnapSink()&lt;br /&gt;
# Setup data stream from the video capture device to the sink and start image acquisition.&lt;br /&gt;
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)&lt;br /&gt;
&lt;br /&gt;
try:&lt;br /&gt;
    # Grab a single image out of the data stream.&lt;br /&gt;
    image = sink.snap_single(1000)&lt;br /&gt;
&lt;br /&gt;
    # Print image information.&lt;br /&gt;
    print(f&amp;quot;Received an image. ImageType: {image.image_type}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # Save the image.&lt;br /&gt;
    image.save_as_bmp(&amp;quot;test.bmp&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
except ic4.IC4Exception as ex:&lt;br /&gt;
    print(ex.message)&lt;br /&gt;
	&lt;br /&gt;
# Stop the data stream.&lt;br /&gt;
grabber.stream_stop()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=200</id>
		<title>使用Python 與 The Imaging Source 相機入門</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=200"/>
		<updated>2024-12-20T05:21:11Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;使用 Python 以及 C、C++ 和 C#，您可以完成以下操作：&lt;br /&gt;
&lt;br /&gt;
* 顯示視訊串流&lt;br /&gt;
* 手動和自動捕捉單張影像&lt;br /&gt;
* 擷取視訊&lt;br /&gt;
* 設定所有相機屬性&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Windows:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝 Imagingcontrol4 輸入指令安裝Imagingcontrol4&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
python3 -m pip install imagingcontrol4&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;或是在Visual Studio Python環境裡選擇安裝imagingcontrol4套件，如下圖：[[檔案:VS install python imagingcontrol4.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
* 驅動 [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/ GigE Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodu3vwintis-1.0.0.224/ /  USB3 Vision 相機 GenTL Producer] [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodlegacywintis-2.0.0.387/ / 非 GenICam 相機的 GenTL Producer (BETA)]&lt;br /&gt;
&lt;br /&gt;
* 範例可透過連結下載 https://github.com/TheImagingSource/ic4-examples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
擷取影像的範例:&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
import imagingcontrol4 as ic4&lt;br /&gt;
ic4.Library.init()&lt;br /&gt;
&lt;br /&gt;
# Create a Grabber object&lt;br /&gt;
grabber = ic4.Grabber()&lt;br /&gt;
&lt;br /&gt;
# Open the first available video capture device&lt;br /&gt;
first_device_info = ic4.DeviceEnum.devices()[0]&lt;br /&gt;
grabber.device_open(first_device_info)&lt;br /&gt;
&lt;br /&gt;
# Set the resolution to 640x480&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)&lt;br /&gt;
&lt;br /&gt;
# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.&lt;br /&gt;
sink = ic4.SnapSink()&lt;br /&gt;
# Setup data stream from the video capture device to the sink and start image acquisition.&lt;br /&gt;
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)&lt;br /&gt;
&lt;br /&gt;
try:&lt;br /&gt;
    # Grab a single image out of the data stream.&lt;br /&gt;
    image = sink.snap_single(1000)&lt;br /&gt;
&lt;br /&gt;
    # Print image information.&lt;br /&gt;
    print(f&amp;quot;Received an image. ImageType: {image.image_type}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # Save the image.&lt;br /&gt;
    image.save_as_bmp(&amp;quot;test.bmp&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
except ic4.IC4Exception as ex:&lt;br /&gt;
    print(ex.message)&lt;br /&gt;
	&lt;br /&gt;
# Stop the data stream.&lt;br /&gt;
grabber.stream_stop()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Linux:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝：請至[https://www.theimagingsource.com/zh-hant-tw/support/download/ The Imaging Source官網]，「軟體開發套件」一章。 根據您的 Linux 平台下載「tiscamera」。&lt;br /&gt;
* 文獻參考 https://www.theimagingsource.com/en-us/documentation/tiscamera/&lt;br /&gt;
* 範例 https://github.com/TheImagingSource/tiscamera/tree/master/examples/python /  https://github.com/TheImagingSource/Linux-tiscamera-Programming-Samples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
程式範例：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import time&lt;br /&gt;
import sys&lt;br /&gt;
import gi&lt;br /&gt;
&lt;br /&gt;
gi.require_version(&amp;quot;Gst&amp;quot;, &amp;quot;1.0&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
from gi.repository import Gst&lt;br /&gt;
&lt;br /&gt;
def main():&lt;br /&gt;
&lt;br /&gt;
    Gst.init(sys.argv)  # init gstreamer&lt;br /&gt;
&lt;br /&gt;
    serial = None&lt;br /&gt;
&lt;br /&gt;
    pipeline = Gst.parse_launch(&amp;quot;tcambin name=bin &amp;quot;&lt;br /&gt;
                                &amp;quot; ! videoconvert&amp;quot;&lt;br /&gt;
                                &amp;quot; ! ximagesink sync=false&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # retrieve the bin element from the pipeline&lt;br /&gt;
    camera = pipeline.get_by_name(&amp;quot;bin&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # serial is defined, thus make the source open that device&lt;br /&gt;
    if serial is not None:&lt;br /&gt;
        camera.set_property(&amp;quot;serial&amp;quot;, serial)&lt;br /&gt;
&lt;br /&gt;
    pipeline.set_state(Gst.State.PLAYING)&lt;br /&gt;
&lt;br /&gt;
    print(&amp;quot;Press Ctrl-C to stop.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # We wait with this thread until a&lt;br /&gt;
    # KeyboardInterrupt in the form of a Ctrl-C&lt;br /&gt;
    # arrives. This will cause the pipline&lt;br /&gt;
    # to be set to state NULL&lt;br /&gt;
    try:&lt;br /&gt;
        while True:&lt;br /&gt;
            time.sleep(1)&lt;br /&gt;
    except KeyboardInterrupt:&lt;br /&gt;
        pass&lt;br /&gt;
    finally:&lt;br /&gt;
        pipeline.set_state(Gst.State.NULL)&lt;br /&gt;
&lt;br /&gt;
if __name__ == &amp;quot;__main__&amp;quot;:&lt;br /&gt;
    main()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_Jupyterlab%E9%96%8B%E7%99%BC&amp;diff=199</id>
		<title>使用 IC Imaging Control 4 SDK 進行 Jupyterlab開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_Jupyterlab%E9%96%8B%E7%99%BC&amp;diff=199"/>
		<updated>2024-12-20T05:12:57Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「=== 安裝環境 ===  * 安裝 JupyterLab 開啟終端機或命令提示字元，並輸入以下指令安裝 Jupyterlab： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt; pip install jupyterlab &amp;lt;/syntaxhighlight&amp;gt;  * 安裝 IC Imaging Control 4 SDK 開啟終端機或命令提示字元，並輸入以下指令安裝 IC Imaging Control 4 SDK： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt; python3 -m pip install imagingcontrol4 &amp;lt;/syntaxhighlight&amp;gt; * 安裝相機驅動 [https://www.theimagings…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== 安裝環境 ===&lt;br /&gt;
&lt;br /&gt;
* 安裝 JupyterLab 開啟終端機或命令提示字元，並輸入以下指令安裝 Jupyterlab： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
pip install jupyterlab&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* 安裝 IC Imaging Control 4 SDK 開啟終端機或命令提示字元，並輸入以下指令安裝 IC Imaging Control 4 SDK： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
python3 -m pip install imagingcontrol4&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
* 安裝相機驅動 [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/ GigE Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodu3vwintis-1.0.0.224/ /  USB3 Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodlegacywintis-2.0.0.387/ / 非 GenICam 相機的 GenTL Producer (BETA)]&lt;br /&gt;
&lt;br /&gt;
* 範例可透過連結下載 https://github.com/TheImagingSource/ic4-examples/tree/master/python&lt;br /&gt;
* 啟動 JupyterLab 在終端機或命令提示字元輸入： &amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
jupyter lab&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;瀏覽器會自動開啟一個新的頁面，為 JupyterLab 的介面。[[檔案:Jupyter.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
&lt;br /&gt;
=== 擷取影像的範例: ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import imagingcontrol4 as ic4&lt;br /&gt;
ic4.Library.init()&lt;br /&gt;
&lt;br /&gt;
# Create a Grabber object&lt;br /&gt;
grabber = ic4.Grabber()&lt;br /&gt;
&lt;br /&gt;
# Open the first available video capture device&lt;br /&gt;
first_device_info = ic4.DeviceEnum.devices()[0]&lt;br /&gt;
grabber.device_open(first_device_info)&lt;br /&gt;
&lt;br /&gt;
# Set the resolution to 640x480&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)&lt;br /&gt;
&lt;br /&gt;
# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.&lt;br /&gt;
sink = ic4.SnapSink()&lt;br /&gt;
# Setup data stream from the video capture device to the sink and start image acquisition.&lt;br /&gt;
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)&lt;br /&gt;
&lt;br /&gt;
try:&lt;br /&gt;
    # Grab a single image out of the data stream.&lt;br /&gt;
    image = sink.snap_single(1000)&lt;br /&gt;
&lt;br /&gt;
    # Print image information.&lt;br /&gt;
    print(f&amp;quot;Received an image. ImageType: {image.image_type}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # Save the image.&lt;br /&gt;
    image.save_as_bmp(&amp;quot;test.bmp&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
except ic4.IC4Exception as ex:&lt;br /&gt;
    print(ex.message)&lt;br /&gt;
	&lt;br /&gt;
# Stop the data stream.&lt;br /&gt;
grabber.stream_stop()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Jupyter.jpg&amp;diff=198</id>
		<title>檔案:Jupyter.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Jupyter.jpg&amp;diff=198"/>
		<updated>2024-12-20T03:33:07Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jupyter lab 頁面&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=33G/38G/38U_%E7%B3%BB%E5%88%97%E7%9B%B8%E6%A9%9F%E7%87%88%E8%99%9F%E6%8C%87%E7%A4%BA%E8%AA%AA%E6%98%8E&amp;diff=197</id>
		<title>33G/38G/38U 系列相機燈號指示說明</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=33G/38G/38U_%E7%B3%BB%E5%88%97%E7%9B%B8%E6%A9%9F%E7%87%88%E8%99%9F%E6%8C%87%E7%A4%BA%E8%AA%AA%E6%98%8E&amp;diff=197"/>
		<updated>2024-09-25T06:07:07Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「此文為The Imaging Source 33G/38G/38U 系列相機燈號指示說明。 200x200像素  === GigE相機 === GigE 相機的 RJ45 網路連接埠上配有兩個 LED 指示燈：  * 當兩個 LED 都熄滅：相機未接入電源。 * 黃色 LED 閃爍且綠色 LED 熄滅：沒有 1GB/s 的連線速率。  200x200像素  ==== 38G系列相機 ==== 38G系列相機除了原有的指示燈外，在 I/O Con…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;此文為The Imaging Source 33G/38G/38U 系列相機燈號指示說明。&lt;br /&gt;
[[檔案:33G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
=== GigE相機 ===&lt;br /&gt;
GigE 相機的 RJ45 網路連接埠上配有兩個 LED 指示燈：&lt;br /&gt;
&lt;br /&gt;
* 當兩個 LED 都熄滅：相機未接入電源。&lt;br /&gt;
* 黃色 LED 閃爍且綠色 LED 熄滅：沒有 1GB/s 的連線速率。&lt;br /&gt;
&lt;br /&gt;
[[檔案:38G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
==== 38G系列相機 ====&lt;br /&gt;
38G系列相機除了原有的指示燈外，在 I/O Connector下方增加了兩個燈號。&lt;br /&gt;
&lt;br /&gt;
左邊：運行狀態指示燈&lt;br /&gt;
&lt;br /&gt;
* 綠色：正常運行。&lt;br /&gt;
* 紅色：出現錯誤。&lt;br /&gt;
&lt;br /&gt;
　　例如：溫度過高：當Sensor溫度達到 70°C 或Power Board/ Main Board溫度達到 80°C 時，狀態燈會變成紅色。&lt;br /&gt;
&lt;br /&gt;
右邊：傳輸狀態指示燈&lt;br /&gt;
&lt;br /&gt;
* 藍色：相機已上電但尚未啟動。&lt;br /&gt;
* 黃色：處於資料傳輸狀態（例如，Live 模式）。&lt;br /&gt;
* 綠色：處於觸發模式。&lt;br /&gt;
* 黃色閃爍：在觸發模式下，每次拍攝一張影像時，燈會短暫閃爍黃色。&lt;br /&gt;
&lt;br /&gt;
[[檔案:38U LED.png|縮圖|283x283像素]]&lt;br /&gt;
&lt;br /&gt;
=== 38U系列相機 ===&lt;br /&gt;
38Ｕ系列相機在接口下方增加了一個燈號。&lt;br /&gt;
&lt;br /&gt;
* 藍色：相機已上電但尚未啟動。&lt;br /&gt;
* 黃色：處於資料傳輸狀態（例如，Live 模式）。&lt;br /&gt;
* 綠色：處於觸發模式。&lt;br /&gt;
* 黃色閃爍：在觸發模式下，每次拍攝一張影像時，燈會短暫閃爍黃色。&lt;br /&gt;
&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:38U_LED.png&amp;diff=196</id>
		<title>檔案:38U LED.png</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:38U_LED.png&amp;diff=196"/>
		<updated>2024-09-25T06:06:10Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;38U LED&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Gige%E7%9B%B8%E6%A9%9F%E9%80%A3%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=195</id>
		<title>Gige相機連線問題</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Gige%E7%9B%B8%E6%A9%9F%E9%80%A3%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=195"/>
		<updated>2024-09-25T03:22:12Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;如果The Imaging Source GigE相機無法在對應的軟體中使用，可能有許多原因。&lt;br /&gt;
&lt;br /&gt;
=== 驅動 ===&lt;br /&gt;
適用於 IC Capture、IC Imaging Control 3.5 和其他基於 DirectShow 的相機，必須安裝GigE 驅動程式，請從連結下載。 https://www.theimagingsource.com/zh-hant-tw/support/download/icwdmgigetis-3.8.0.4597/&lt;br /&gt;
&lt;br /&gt;
對於基於 IC Imaging Control 4 的程序， 必須安裝 GenTL Producer。 請從連結下載。 https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/&lt;br /&gt;
[[檔案:33G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
=== 電源 ===&lt;br /&gt;
GigE 相機需要電源才能運行。 &lt;br /&gt;
&lt;br /&gt;
如果相機上的 RJ45 網路連接埠上的&#039;&#039;&#039;兩個 LED 都熄滅&#039;&#039;&#039;，則表示&#039;&#039;&#039;相機沒有供電&#039;&#039;&#039;。 &lt;br /&gt;
&lt;br /&gt;
以下是可以為相機供電的選項：&lt;br /&gt;
&lt;br /&gt;
* GigE PoE 供電器: 透過網路線材為相機供電。&lt;br /&gt;
* GigE PoE 交換器: 具備 PoE 功能的網路交換器，可以為連接的相機供電。&lt;br /&gt;
* 適用於相機 Hirose 接頭的 12V 電源供應器: 直接為相機供電的電源供應器。&lt;br /&gt;
[[檔案:Jumbo Frame.png|縮圖]]&lt;br /&gt;
=== 網路速度 ===&lt;br /&gt;
如果只有&#039;&#039;&#039;黃色 LED 閃爍&#039;&#039;&#039;且&#039;&#039;&#039;綠色 LED 熄滅&#039;&#039;&#039;，則&#039;&#039;&#039;表示沒有 1GB/s 連線&#039;&#039;&#039;。 &lt;br /&gt;
&lt;br /&gt;
最遲當即時視訊開始時相機會關閉。 這裡必須保證有1GB/s的網路連線。&lt;br /&gt;
&lt;br /&gt;
並建議啟用巨型訊框，可以按照下列步驟設定。&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;裝置管理員 -&amp;gt; 網路介面卡 -&amp;gt; 進階 -&amp;gt; Jumbo Frame -&amp;gt; 9014Bytes&#039;&#039;&#039;&lt;br /&gt;
[[檔案:38G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
=== 38G 系列狀態指示燈 ===&lt;br /&gt;
&lt;br /&gt;
==== 左邊：運行狀態指示燈 ====&lt;br /&gt;
&lt;br /&gt;
* 綠色：正常運行。&lt;br /&gt;
* 紅色：出現錯誤。&lt;br /&gt;
&lt;br /&gt;
例如：溫度過高：當Sensor溫度達到 70°C 或Power Board/ Main Board溫度達到 80°C 時，狀態燈會變成紅色。&lt;br /&gt;
&lt;br /&gt;
==== 右邊：傳輸狀態指示燈 ====&lt;br /&gt;
&lt;br /&gt;
* 藍色：相機已上電但尚未啟動。&lt;br /&gt;
* 黃色：處於資料傳輸狀態（例如，Live 模式）。&lt;br /&gt;
* 綠色：處於觸發模式。&lt;br /&gt;
* 黃色閃爍：在觸發模式下，每次拍攝一張影像時，燈會短暫閃爍黃色。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== IP設定 ===&lt;br /&gt;
[[檔案:Gigeconfigtaskleiste.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
==== DirectShow ====&lt;br /&gt;
GigECamera IP Config 程式與 GigE 相機驅動程式一起安裝。 &lt;br /&gt;
&lt;br /&gt;
最簡單的啟動方法是透過 Windows 工作列左下角的系統匣(圖片中標記的軟體)。 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[檔案:Gigeconfig-correctip.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
GigE Camera IP 設定程式如圖所示。&lt;br /&gt;
&lt;br /&gt;
DFK Z30GP031 已正確配置，下方 DMK 33GR0521 的自動連結本機 IP 位址不合適。 &lt;br /&gt;
&lt;br /&gt;
GigECam IP Config 會顯示所使用的網路、網路速度以及 IP 位址。&lt;br /&gt;
&lt;br /&gt;
相機的網段需要與目前使用的網段一致，本例使用網路IP為192.168.1.1，則相機網段應設為192.168.1.X，X區間為2-255。&lt;br /&gt;
&lt;br /&gt;
如果要在「IP Configuration」標籤設定新的固定 IP 位址，則分兩步驟完成。 第一步，輸入任何合適的 IP 位址並選擇「Force IP」。 相機從相機清單中短暫消失，然後重新出現。 然後回到「IP Configuration」標籤下勾選「Persistent IP」固定相機IP。&lt;br /&gt;
&lt;br /&gt;
===== 固定IP 位址： =====&lt;br /&gt;
如果電腦中使用多個網路介面卡，則此配置非常有用：&lt;br /&gt;
&lt;br /&gt;
網路介面卡 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 2 到轉接器 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.3 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
網路介面卡2：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.2.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 2：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.2.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
網路介面卡3：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.3.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 3：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.3.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
===== DHCP 伺服器設定： =====&lt;br /&gt;
若同時將網路與相機配置為DHCP 伺服器會自動為網路使用者分配 IP 位址。&lt;br /&gt;
&lt;br /&gt;
網路介面卡：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.0.a 子網路遮罩 255.255.255.0，來自 DHCP 伺服器&lt;br /&gt;
&lt;br /&gt;
相機：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.0.b 子網路遮罩 255.255.255.0，也來自 DHCP 伺服器&lt;br /&gt;
&lt;br /&gt;
===== Link-local address： =====&lt;br /&gt;
如果只使用一個網路介面卡，這是最簡單的配置。 網路介面卡和相機都設定為 DHCP，但沒有 DHCP 伺服器。 在等待 DHCP 伺服器逾時後，所有網路參與者都會為自己分配一個自動連結本機 IP 位址，該位址從 169.254 開始。&lt;br /&gt;
&lt;br /&gt;
網路介面卡：&lt;br /&gt;
&lt;br /&gt;
IP 位址 169.254.a.b 子網路遮罩 255.255.0.0&lt;br /&gt;
&lt;br /&gt;
相機：&lt;br /&gt;
&lt;br /&gt;
IP 位址 169.254.c.d 子網路遮罩 255.255.0.0&lt;br /&gt;
[[檔案:Gigeconfig-ic4.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
==== IC Imaging Control 4, GenTL Producer / IC4 Driver for GigE Cameras, TIS Measure 4.0 ====&lt;br /&gt;
如果使用標題中提到的軟體，則可以使用程式「ic4-device-manager.exe」。 它與 IC Imaging Control 4 SDK 一起安裝，位於資料夾 c:\Program Files\The Imaging Source Europe GmbH\ic4\demoapp\ 中。 它看起來如右圖所示。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如果電源、網路速度為 1GB/s 且 IP 都配置正確，則 GigE 攝影機必須能夠被所有對應程式使用。&lt;br /&gt;
&lt;br /&gt;
如有其他任何疑問，請填寫我們的[https://www.theimagingsource.com/zh-hant-tw/company/contact/ 聯繫表單]。&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:故障排除]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Gige%E7%9B%B8%E6%A9%9F%E9%80%A3%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=194</id>
		<title>Gige相機連線問題</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Gige%E7%9B%B8%E6%A9%9F%E9%80%A3%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=194"/>
		<updated>2024-09-25T03:09:33Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;如果The Imaging Source GigE相機無法在對應的軟體中使用，可能有許多原因。&lt;br /&gt;
&lt;br /&gt;
=== 驅動 ===&lt;br /&gt;
適用於 IC Capture、IC Imaging Control 3.5 和其他基於 DirectShow 的相機，必須安裝GigE 驅動程式，請從連結下載。 https://www.theimagingsource.com/zh-hant-tw/support/download/icwdmgigetis-3.8.0.4597/&lt;br /&gt;
&lt;br /&gt;
對於基於 IC Imaging Control 4 的程序， 必須安裝 GenTL Producer。 請從連結下載。 https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/&lt;br /&gt;
[[檔案:33G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
=== 電源 ===&lt;br /&gt;
GigE 相機需要電源才能運行。 &lt;br /&gt;
&lt;br /&gt;
如果相機上的 RJ45 網路連接埠上的&#039;&#039;&#039;兩個 LED 都熄滅&#039;&#039;&#039;，則表示&#039;&#039;&#039;相機沒有供電&#039;&#039;&#039;。 &lt;br /&gt;
&lt;br /&gt;
以下是可以為相機供電的選項：&lt;br /&gt;
&lt;br /&gt;
* GigE PoE 供電器: 透過網路線材為相機供電。&lt;br /&gt;
* GigE PoE 交換器: 具備 PoE 功能的網路交換器，可以為連接的相機供電。&lt;br /&gt;
* 適用於相機 Hirose 接頭的 12V 電源供應器: 直接為相機供電的電源供應器。&lt;br /&gt;
[[檔案:Jumbo Frame.png|縮圖]]&lt;br /&gt;
=== 網路速度 ===&lt;br /&gt;
如果只有&#039;&#039;&#039;黃色 LED 閃爍&#039;&#039;&#039;且&#039;&#039;&#039;綠色 LED 熄滅&#039;&#039;&#039;，則&#039;&#039;&#039;表示沒有 1GB/s 連線&#039;&#039;&#039;。 &lt;br /&gt;
&lt;br /&gt;
最遲當即時視訊開始時相機會關閉。 這裡必須保證有1GB/s的網路連線。&lt;br /&gt;
&lt;br /&gt;
並建議啟用巨型訊框，可以按照下列步驟設定。&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;裝置管理員 -&amp;gt; 網路介面卡 -&amp;gt; 進階 -&amp;gt; Jumbo Frame -&amp;gt; 9014Bytes&#039;&#039;&#039;&lt;br /&gt;
[[檔案:38G LED.png|縮圖|200x200像素]]&lt;br /&gt;
&lt;br /&gt;
=== 38G 系列狀態指示燈 ===&lt;br /&gt;
&lt;br /&gt;
==== 左邊：運行狀態指示燈 ====&lt;br /&gt;
&lt;br /&gt;
* 綠色：正常運行。&lt;br /&gt;
* 紅色：出現錯誤。&lt;br /&gt;
&lt;br /&gt;
例如：溫度過高：當Sensor溫度達到 70°C 或Power Board/ Main Board溫度達到 80°C 時，狀態燈會變成紅色。&lt;br /&gt;
&lt;br /&gt;
==== 右邊：傳輸狀態指示燈 ====&lt;br /&gt;
&lt;br /&gt;
* 藍色：相機已上電但尚未啟動。&lt;br /&gt;
* 黃色：處於資料傳輸狀態（例如，Live 模式）。&lt;br /&gt;
* 綠色：處於觸發模式。&lt;br /&gt;
* 黃色閃爍：在觸發模式下，每次拍攝一張照片時，燈會短暫閃爍黃色。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== IP設定 ===&lt;br /&gt;
[[檔案:Gigeconfigtaskleiste.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
==== DirectShow ====&lt;br /&gt;
GigECamera IP Config 程式與 GigE 相機驅動程式一起安裝。 &lt;br /&gt;
&lt;br /&gt;
最簡單的啟動方法是透過 Windows 工作列左下角的系統匣(圖片中標記的軟體)。 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[檔案:Gigeconfig-correctip.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
GigE Camera IP 設定程式如圖所示。&lt;br /&gt;
&lt;br /&gt;
DFK Z30GP031 已正確配置，下方 DMK 33GR0521 的自動連結本機 IP 位址不合適。 &lt;br /&gt;
&lt;br /&gt;
GigECam IP Config 會顯示所使用的網路、網路速度以及 IP 位址。&lt;br /&gt;
&lt;br /&gt;
相機的網段需要與目前使用的網段一致，本例使用網路IP為192.168.1.1，則相機網段應設為192.168.1.X，X區間為2-255。&lt;br /&gt;
&lt;br /&gt;
如果要在「IP Configuration」標籤設定新的固定 IP 位址，則分兩步驟完成。 第一步，輸入任何合適的 IP 位址並選擇「Force IP」。 相機從相機清單中短暫消失，然後重新出現。 然後回到「IP Configuration」標籤下勾選「Persistent IP」固定相機IP。&lt;br /&gt;
&lt;br /&gt;
===== 固定IP 位址： =====&lt;br /&gt;
如果電腦中使用多個網路介面卡，則此配置非常有用：&lt;br /&gt;
&lt;br /&gt;
網路介面卡 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 2 到轉接器 1：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.1.3 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
網路介面卡2：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.2.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 2：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.2.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
網路介面卡3：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.3.1 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
相機 1 到轉接器 3：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.3.2 子網路遮罩 255.255.255.0&lt;br /&gt;
&lt;br /&gt;
===== DHCP 伺服器設定： =====&lt;br /&gt;
若同時將網路與相機配置為DHCP 伺服器會自動為網路使用者分配 IP 位址。&lt;br /&gt;
&lt;br /&gt;
網路介面卡：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.0.a 子網路遮罩 255.255.255.0，來自 DHCP 伺服器&lt;br /&gt;
&lt;br /&gt;
相機：&lt;br /&gt;
&lt;br /&gt;
IP 位址 192.168.0.b 子網路遮罩 255.255.255.0，也來自 DHCP 伺服器&lt;br /&gt;
&lt;br /&gt;
===== Link-local address： =====&lt;br /&gt;
如果只使用一個網路介面卡，這是最簡單的配置。 網路介面卡和相機都設定為 DHCP，但沒有 DHCP 伺服器。 在等待 DHCP 伺服器逾時後，所有網路參與者都會為自己分配一個自動連結本機 IP 位址，該位址從 169.254 開始。&lt;br /&gt;
&lt;br /&gt;
網路介面卡：&lt;br /&gt;
&lt;br /&gt;
IP 位址 169.254.a.b 子網路遮罩 255.255.0.0&lt;br /&gt;
&lt;br /&gt;
相機：&lt;br /&gt;
&lt;br /&gt;
IP 位址 169.254.c.d 子網路遮罩 255.255.0.0&lt;br /&gt;
[[檔案:Gigeconfig-ic4.png|縮圖]]&lt;br /&gt;
&lt;br /&gt;
==== IC Imaging Control 4, GenTL Producer / IC4 Driver for GigE Cameras, TIS Measure 4.0 ====&lt;br /&gt;
如果使用標題中提到的軟體，則可以使用程式「ic4-device-manager.exe」。 它與 IC Imaging Control 4 SDK 一起安裝，位於資料夾 c:\Program Files\The Imaging Source Europe GmbH\ic4\demoapp\ 中。 它看起來如右圖所示。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如果電源、網路速度為 1GB/s 且 IP 都配置正確，則 GigE 攝影機必須能夠被所有對應程式使用。&lt;br /&gt;
&lt;br /&gt;
如有其他任何疑問，請填寫我們的[https://www.theimagingsource.com/zh-hant-tw/company/contact/ 聯繫表單]。&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:故障排除]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:38G_LED.png&amp;diff=193</id>
		<title>檔案:38G LED.png</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:38G_LED.png&amp;diff=193"/>
		<updated>2024-09-25T03:06:13Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;38G LED&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:33G_LED.png&amp;diff=192</id>
		<title>檔案:33G LED.png</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:33G_LED.png&amp;diff=192"/>
		<updated>2024-09-25T02:42:52Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;33G LED&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%8D%B2%E7%B0%BE%E5%BF%AB%E9%96%80%E7%9B%B8%E6%A9%9F%E7%9A%84%E9%A0%BB%E9%96%83%E8%A8%8A%E8%99%9F%E8%A1%8C%E7%82%BA&amp;diff=191</id>
		<title>捲簾快門相機的頻閃訊號行為</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%8D%B2%E7%B0%BE%E5%BF%AB%E9%96%80%E7%9B%B8%E6%A9%9F%E7%9A%84%E9%A0%BB%E9%96%83%E8%A8%8A%E8%99%9F%E8%A1%8C%E7%82%BA&amp;diff=191"/>
		<updated>2024-08-13T01:54:06Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「捲簾快門的頻閃行為完全取決於感測器本身，沒有固定的規則。  有些相機根本不頻閃，有些僅在觸發模式下，有些相機甚至在自由運行時也有頻閃。 分類:手冊」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;捲簾快門的頻閃行為完全取決於感測器本身，沒有固定的規則。&lt;br /&gt;
&lt;br /&gt;
有些相機根本不頻閃，有些僅在觸發模式下，有些相機甚至在自由運行時也有頻閃。&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=190</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=190"/>
		<updated>2024-06-25T02:41:13Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝相關套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|601x601像素]]&lt;br /&gt;
# 初始化[https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.Library.html IC Imaging Control 4 .NET library] 加入以下命令初始化函示庫&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
 ic4.Library.Init(apiLogLevel:ic4.LogLevel.Warning, internalLogLevel: ic4.LogLevel.Debug, logTargets: ic4.LogTarget.File, logFilePath: &amp;quot;test.log&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=189</id>
		<title>如何在NVIDIA Jetson Nano上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=189"/>
		<updated>2024-04-29T06:30:01Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== 基本步驟 ===&lt;br /&gt;
[[檔案:Win32diskimager_select.png|縮圖]]&lt;br /&gt;
請至[https://developer.nvidia.com/embedded/jetpack-sdk-451-archive NVIDIA官方網站]下載映像檔(jetpack4.5.1/ jetpack4.4 / jetpack4.4.1)並安裝。可以利用 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
置下方下載需要的檔案，並利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_XXXX .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ theimagingsource-drivers_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ tcamdutils_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Software Development Kit (SDK)： ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64642004-1.1.0.4139/ Ubuntu 20.04 64 Bit]　&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64641804-1.1.0.4139/ Ubuntu 18.04 and 22.04 64 Bit]&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;最佳化：&#039;&#039;&#039; ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarm64-1.0.0.560/ tcamdutils for Linux ARM64]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
[[檔案:Theimagingsource-drivers.png|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
==== MIPI Sensor Drivers for NVIDIA® JetPack： ====&lt;br /&gt;
FPD-Link相機與MIPI相機需安裝此項目，安裝時需要選擇使用的相機以及NVIDIA Jetson Nano（如右圖）。&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**&amp;lt;/nowiki&amp;gt;請注意 Nano型號，有兩個MIPI CSI-2 相機連接器的為devkit，一個MIPI CSI-2 相機連接器的為legacy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
若要更換相機請輸入下列命令並重新選擇驅動後重新開機：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg-reconfigure theimagingsource-drivers&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson45-2.2.11-1/ NVIDIA® JetPack SDK version 4.5 and 4 .5.1]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson-2.2.11-1/ NVIDIA® JetPack SDK version 4.4]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson441-2.2.11-1/ NVIDIA® JetPack SDK version 4.4.1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;tcamtegrasrc for MIPI and FPD Link Cameras on NVIDIA® Tegra：&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
安裝 [https://www.theimagingsource.com/zh-hant-tw/support/download/tcamtegrasrcarm64-1.2.0.398/ GStreamer 插件]&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install ./ tcamtegrasrc_XXX.deb&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為連接FPD-Link相機模組與MIPI相機之範例。&lt;br /&gt;
[[檔案:Nano_ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi_MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:Nano_tcam-capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計 ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡 ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]&lt;br /&gt;
用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%9A%A8%E6%A9%9F%E3%80%81%E9%87%8D%E8%A4%87%E6%96%B7%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=188</id>
		<title>隨機、重複斷線問題</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%9A%A8%E6%A9%9F%E3%80%81%E9%87%8D%E8%A4%87%E6%96%B7%E7%B7%9A%E5%95%8F%E9%A1%8C&amp;diff=188"/>
		<updated>2024-04-26T02:34:25Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;反覆（大多是隨機）斷開連接的原因相對難以找出答案。&lt;br /&gt;
&lt;br /&gt;
第一個步驟是嘗試不同的 USB線 或網路線並確保插頭連接良好。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;USB相機&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
避免使用電腦前置 USB 插槽: 桌面上主機的正面 USB 插槽通常屏蔽性能較弱，可能會影響數據傳輸，導致 USB 控制埠與相機斷開連接。建議使用位於電腦背面的 USB 插槽。&lt;br /&gt;
&lt;br /&gt;
檢查 USB 控制器: 我們已知部分 ASMedia™ 和 AMD™ USB 3 控制器可能會導致斷線問題。您可以考慮在電腦中安裝搭載 Intel™ 或 Fresco Logic™ 晶片的其他 USB 控制器。&lt;br /&gt;
&lt;br /&gt;
檢查電源管理設置: 雖然省電設置很少會導致 USB 相機斷線，但您也可以檢查一下是否啟用了“節能模式”等設置。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GigE 相機&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
檢查網路速度: Imaging Source GigE 相機無法在 10Mb/s 或 100Mb/s 的網路上運行。若即時影像串流開始播放，相機最晚會在開啟時自動關閉。即使您的電腦擁有 1GB 網卡，網路速度也可能受到 (PoE) 交換器、PoE 供電器或路由器的限制。&lt;br /&gt;
&lt;br /&gt;
檢查網路控制器節能設置: 一些 GigE 網絡控制器具有自己的節能管理功能，有時稱為“Green Ethernet”。請在 Windows 裝置管理員中關閉此功能。 這是在 Windows 裝置管理員中完成的。 右鍵單擊網卡並選擇“內容”，前往「電源管理」取消勾選「允許電腦關閉這個裝置以節省電源」。&lt;br /&gt;
&lt;br /&gt;
非常舊的韌體版本也存在斷開連接的問題。 自 1912版本以來，此問題已修復。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
這些提示只是可能解決方案，斷線問題也可能由其他原因引起，，例如 相機中的冷焊點。&lt;br /&gt;
&lt;br /&gt;
如有其他問題，請使用我們的[https://www.theimagingsource.com/zh-hant-tw/company/contact/ 聯絡表格]。&lt;br /&gt;
[[分類:故障排除]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=187</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=187"/>
		<updated>2024-04-24T01:53:56Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs。[https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6/common/qt6-dialogs 範例]中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/DeviceSelectionDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=186</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=186"/>
		<updated>2024-04-17T05:27:10Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs。範例中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/DeviceSelectionDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_4_SDK_%E9%80%B2%E8%A1%8C_Visual_Studio_Cpp_MFC_%E9%96%8B%E7%99%BC&amp;diff=185</id>
		<title>使用 IC 4 SDK 進行 Visual Studio Cpp MFC 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_4_SDK_%E9%80%B2%E8%A1%8C_Visual_Studio_Cpp_MFC_%E9%96%8B%E7%99%BC&amp;diff=185"/>
		<updated>2024-04-17T03:59:58Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「使用 IC 4 SDK 進行 Visual Studio Cpp MFC 開發 - 本文使用IC Imaging Control 4，此僅支援&amp;#039;&amp;#039;&amp;#039;Windows 10&amp;#039;&amp;#039;&amp;#039; 以上版本  範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/win32-mfc  IC Imaging Control 4 C++ 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/annotated.html  # 安裝IC Imaging Control 4 SDK  請至連結下載並安裝SDK：https://www.theimagingsource.com/z…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;使用 IC 4 SDK 進行 Visual Studio Cpp MFC 開發 - 本文使用IC Imaging Control 4，此僅支援&#039;&#039;&#039;Windows 10&#039;&#039;&#039; 以上版本&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/win32-mfc&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 C++ 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/annotated.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK  請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:Creat Project MFC.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 右鍵 -&amp;gt; 屬性 -&amp;gt; C/C++ -&amp;gt; 一般 -&amp;gt; 其他include目錄 -&amp;gt; 加入 $(IC4PATH)\include[[檔案:加入 (IC4PATH)include.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 右鍵 -&amp;gt; 屬性 -&amp;gt; C/C++ -&amp;gt; 一般 -&amp;gt; 其他程式庫目錄 -&amp;gt; 加入 $(IC4PATH)/lib[[檔案:加入 (IC4PATH)lib.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 包含IC4標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4-gui/ic4gui.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::initLibrary();&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:%E5%8A%A0%E5%85%A5_(IC4PATH)lib.jpg&amp;diff=184</id>
		<title>檔案:加入 (IC4PATH)lib.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:%E5%8A%A0%E5%85%A5_(IC4PATH)lib.jpg&amp;diff=184"/>
		<updated>2024-04-17T03:43:52Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;加入 (IC4PATH)lib&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:%E5%8A%A0%E5%85%A5_(IC4PATH)include.jpg&amp;diff=183</id>
		<title>檔案:加入 (IC4PATH)include.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:%E5%8A%A0%E5%85%A5_(IC4PATH)include.jpg&amp;diff=183"/>
		<updated>2024-04-17T03:43:19Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;加入 (IC4PATH)include&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Creat_Project_MFC.jpg&amp;diff=182</id>
		<title>檔案:Creat Project MFC.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Creat_Project_MFC.jpg&amp;diff=182"/>
		<updated>2024-04-17T03:42:26Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Creat Project MFC&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=181</id>
		<title>如何在NVIDIA Jetson Nano上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=181"/>
		<updated>2024-04-17T01:46:25Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== 基本步驟 ===&lt;br /&gt;
[[檔案:Win32diskimager_select.png|縮圖]]&lt;br /&gt;
請至[https://developer.nvidia.com/embedded/jetpack-sdk-451-archive NVIDIA官方網站]下載映像檔(jetpack4.5.1/ jetpack4.4 / jetpack4.4.1)並安裝。可以利用 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
可使用以下命令更新系統。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade&lt;br /&gt;
sudo apt autoremove&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
置下方下載需要的檔案，並利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_XXXX .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ theimagingsource-drivers_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ tcamdutils_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Software Development Kit (SDK)： ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64642004-1.1.0.4139/ Ubuntu 20.04 64 Bit]　&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64641804-1.1.0.4139/ Ubuntu 18.04 and 22.04 64 Bit]&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;最佳化：&#039;&#039;&#039; ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarm64-1.0.0.560/ tcamdutils for Linux ARM64]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
[[檔案:Theimagingsource-drivers.png|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
==== MIPI Sensor Drivers for NVIDIA® JetPack： ====&lt;br /&gt;
FPD-Link相機與MIPI相機需安裝此項目，安裝時需要選擇使用的相機以及NVIDIA Jetson Nano（如右圖）。&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;**&amp;lt;/nowiki&amp;gt;請注意 Nano型號，有兩個MIPI CSI-2 相機連接器的為devkit，一個MIPI CSI-2 相機連接器的為legacy&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
若要更換相機請輸入下列命令並重新選擇驅動後重新開機：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg-reconfigure theimagingsource-drivers&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson45-2.2.11-1/ NVIDIA® JetPack SDK version 4.5 and 4 .5.1]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson-2.2.11-1/ NVIDIA® JetPack SDK version 4.4]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson441-2.2.11-1/ NVIDIA® JetPack SDK version 4.4.1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;tcamtegrasrc for MIPI and FPD Link Cameras on NVIDIA® Tegra：&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
安裝 [https://www.theimagingsource.com/zh-hant-tw/support/download/tcamtegrasrcarm64-1.2.0.398/ GStreamer 插件]&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install ./ tcamtegrasrc_XXX.deb&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為連接FPD-Link相機模組與MIPI相機之範例。&lt;br /&gt;
[[檔案:Nano_ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi_MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:Nano_tcam-capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計 ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡 ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]&lt;br /&gt;
用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=180</id>
		<title>如何在NVIDIA Jetson Nano上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=180"/>
		<updated>2024-04-17T00:39:38Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== 基本步驟 ===&lt;br /&gt;
[[檔案:Win32diskimager_select.png|縮圖]]&lt;br /&gt;
請至[https://developer.nvidia.com/embedded/jetpack-sdk-451-archive NVIDIA官方網站]下載映像檔(jetpack4.5.1/ jetpack4.4 / jetpack4.4.1)並安裝。可以利用 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
可使用以下命令更新系統。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade&lt;br /&gt;
sudo apt autoremove&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
置下方下載需要的檔案，並利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_XXXX .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ theimagingsource-drivers_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ tcamdutils_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Software Development Kit (SDK)： ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64642004-1.1.0.4139/ Ubuntu 20.04 64 Bit]　&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64641804-1.1.0.4139/ Ubuntu 18.04 and 22.04 64 Bit]&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;最佳化：&#039;&#039;&#039; ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarm64-1.0.0.560/ tcamdutils for Linux ARM64]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
[[檔案:Theimagingsource-drivers.png|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
==== MIPI Sensor Drivers for NVIDIA® JetPack： ====&lt;br /&gt;
FPD-Link相機與MIPI相機需安裝此項目，安裝時需要選擇使用的相機以及NVIDIA Jetson Nano（如右圖）。&lt;br /&gt;
&lt;br /&gt;
若要更換相機請輸入下列命令並重新選擇驅動後重新開機：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg-reconfigure theimagingsource-drivers&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson45-2.2.11-1/ NVIDIA® JetPack SDK version 4.5 and 4 .5.1]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson-2.2.11-1/ NVIDIA® JetPack SDK version 4.4]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson441-2.2.11-1/ NVIDIA® JetPack SDK version 4.4.1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GStreamer Plugin：&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
安裝 [https://www.theimagingsource.com/zh-hant-tw/support/download/tcamtegrasrcarm64-1.2.0.398/ GStreamer 插件]&lt;br /&gt;
&lt;br /&gt;
tcamtegrasrc for MIPI and FPD Link Cameras on NVIDIA® Tegra&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install ./ tcamtegrasrc_XXX.deb&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為連接FPD-Link相機模組與MIPI相機之範例。&lt;br /&gt;
[[檔案:Nano_ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi_MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:Nano_tcam-capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計 ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡 ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]&lt;br /&gt;
用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=179</id>
		<title>如何在NVIDIA Jetson Nano上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=179"/>
		<updated>2024-04-16T09:30:53Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== 基本步驟 ===&lt;br /&gt;
[[檔案:Win32diskimager_select.png|縮圖]]&lt;br /&gt;
請至[https://developer.nvidia.com/embedded/jetpack-sdk-451-archive NVIDIA官方網站]下載映像檔(jetpack4.5.1/ jetpack4.4 / jetpack4.4.1)並安裝。可以利用 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
可使用以下命令更新系統。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade&lt;br /&gt;
sudo apt autoremove&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
置下方下載需要的檔案，並利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_XXXX .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ theimagingsource-drivers_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ tcamdutils_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Software Development Kit (SDK)： ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64642004-1.1.0.4139/ Ubuntu 20.04 64 Bit]　&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64641804-1.1.0.4139/ Ubuntu 18.04 and 22.04 64 Bit]&lt;br /&gt;
&lt;br /&gt;
==== &#039;&#039;&#039;最佳化：&#039;&#039;&#039; ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarm64-1.0.0.560/ tcamdutils for Linux ARM64]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
[[檔案:Theimagingsource-drivers.png|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
==== MIPI Sensor Drivers for NVIDIA® JetPack： ====&lt;br /&gt;
FPD-Link相機與MIPI相機需安裝此項目，安裝時需要選擇使用的相機以及NVIDIA Jetson Nano（如右圖）。&lt;br /&gt;
&lt;br /&gt;
若要更換相機請輸入下列命令並重新選擇驅動後重新開機：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg-reconfigure theimagingsource-drivers&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson45-2.2.11-1/ NVIDIA® JetPack SDK version 4.5 and 4 .5.1]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson-2.2.11-1/ NVIDIA® JetPack SDK version 4.4]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson441-2.2.11-1/ NVIDIA® JetPack SDK version 4.4.1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;GStreamer Plugin：&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
安裝 [https://www.theimagingsource.com/zh-hant-tw/support/download/tcamtegrasrcarm64-1.2.0.398/ GStreamer 插件]&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install ./ tcamtegrasrc_XXX.deb&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為連接FPD-Link相機模組與MIPI相機之範例。&lt;br /&gt;
[[檔案:Nano_ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi_MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:Nano_tcam-capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計 ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡 ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]&lt;br /&gt;
用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=178</id>
		<title>如何在NVIDIA Jetson Nano上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8NVIDIA_Jetson_Nano%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=178"/>
		<updated>2024-04-16T09:25:30Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
=== 基本步驟 ===&lt;br /&gt;
[[檔案:Win32diskimager_select.png|縮圖]]&lt;br /&gt;
請至[https://developer.nvidia.com/embedded/jetpack-sdk-451-archive NVIDIA官方網站]下載映像檔(jetpack4.5.1/ jetpack4.4 / jetpack4.4.1)並安裝。可以利用 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
可使用以下命令更新系統。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade&lt;br /&gt;
sudo apt autoremove&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
置下方下載需要的檔案，並利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_XXXX .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ theimagingsource-drivers_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./ tcamdutils_XXXX.deb #選擇安裝的檔案&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Software Development Kit (SDK)： ====&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64642004-1.1.0.4139/ Ubuntu 20.04 64 Bit]　&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm64641804-1.1.0.4139/ Ubuntu 18.04 and 22.04 64 Bit]&lt;br /&gt;
&lt;br /&gt;
==== 最佳化： ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarm64-1.0.0.560/ tcamdutils for Linux ARM64]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
[[檔案:Theimagingsource-drivers.png|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
==== MIPI Sensor Drivers for NVIDIA® JetPack： ====&lt;br /&gt;
FPD-Link相機與MIPI相機需安裝此項目，安裝時需要選擇使用的相機以及NVIDIA Jetson Nano（如右圖）。&lt;br /&gt;
&lt;br /&gt;
若要更換相機請輸入下列命令並重新選擇驅動後重新開機：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo dpkg-reconfigure theimagingsource-drivers&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson45-2.2.11-1/ NVIDIA® JetPack SDK version 4.5 and 4 .5.1]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson-2.2.11-1/ NVIDIA® JetPack SDK version 4.4]&lt;br /&gt;
* [https://www.theimagingsource.com/zh-hant-tw/support/download/mipicameradriverjetson441-2.2.11-1/ NVIDIA® JetPack SDK version 4.4.1]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;[https://www.theimagingsource.com/zh-hant-tw/support/download/tcamtegrasrcarm64-1.2.0.398/ GStreamer Plugin]：&#039;&#039;&#039;&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt install ./ tcamtegrasrc_XXX.deb&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為連接FPD-Link相機模組與MIPI相機之範例。&lt;br /&gt;
[[檔案:Nano_ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi_MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:Nano_tcam-capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計 ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡 ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]&lt;br /&gt;
用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=177</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=177"/>
		<updated>2024-04-12T08:08:16Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs。範例中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=176</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=176"/>
		<updated>2024-04-12T07:56:49Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs 範例中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=175</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=175"/>
		<updated>2024-04-12T07:56:31Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
&lt;br /&gt;
IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|601x601像素]]&lt;br /&gt;
# 初始化[https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.Library.html IC Imaging Control 4 .NET library] 加入以下命令初始化函示庫&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
 ic4.Library.Init(apiLogLevel:ic4.LogLevel.Warning, internalLogLevel: ic4.LogLevel.Debug, logTargets: ic4.LogTarget.File, logFilePath: &amp;quot;test.log&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=174</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=174"/>
		<updated>2024-04-12T07:55:50Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
&lt;br /&gt;
其他IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|601x601像素]]&lt;br /&gt;
# 初始化[https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.Library.html IC Imaging Control 4 .NET library] 加入以下命令初始化函示庫&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
 ic4.Library.Init(apiLogLevel:ic4.LogLevel.Warning, internalLogLevel: ic4.LogLevel.Debug, logTargets: ic4.LogTarget.File, logFilePath: &amp;quot;test.log&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=173</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=173"/>
		<updated>2024-04-12T07:55:21Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，&#039;&#039;&#039;此僅支援Windows 10 以上版本&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
其他IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs 範例中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=172</id>
		<title>使用 IC Imaging Control 4 SDK 進行 QT 開發</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8_IC_Imaging_Control_4_SDK_%E9%80%B2%E8%A1%8C_QT_%E9%96%8B%E7%99%BC&amp;diff=172"/>
		<updated>2024-04-12T07:48:59Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「本文使用IC Imaging Control 4，此僅支援Windows 10 以上版本  範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6  其他IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html  # 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文使用IC Imaging Control 4，此僅支援Windows 10 以上版本&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/cpp/qt6&lt;br /&gt;
&lt;br /&gt;
其他IC Imaging Control 4 C++文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4cpp/namespaceic4.html&lt;br /&gt;
&lt;br /&gt;
# 安裝IC Imaging Control 4 SDK 請至連結下載並安裝SDK：https://www.theimagingsource.com/zh-hant-tw/support/download/icimagingcontrol4win-1.0.0.2416/&lt;br /&gt;
# 新增專案並選擇 CMake建置,編譯器 MSVC2019 64bit[[檔案:QT-新專案.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
# 在CMakeList裡，加入尋找和設定IC4程式庫 *請更改為你的msvc2019_64路徑&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
find_package(ic4 REQUIRED)&lt;br /&gt;
list(APPEND CMAKE_PREFIX_PATH &amp;quot;E:/QT/6.6.0/msvc2019_64/&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 在CMakeList裡， target_link_libraries連結IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
    ic4::core&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 將 &amp;lt;ic4/ic4.h&amp;gt; 引入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;lt;ic4/ic4.h&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 初始化IC4程式庫&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
ic4::InitLibraryConfig conf = {};&lt;br /&gt;
ic4::initLibrary(conf);&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
# 加入qt6-dialogs 範例中提供DeviceSelectionDialog以及PropertyDialog，可以將此資料夾複製並加入專案中。 在專案裡右鍵 -&amp;gt; Add Existing Ditectory -&amp;gt; 勾選qt6-dialogs資料夾[[檔案:Add Existing Ditectory.jpg|無|縮圖]]並將&amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;加入標頭檔&amp;lt;syntaxhighlight lang=&amp;quot;c++&amp;quot;&amp;gt;&lt;br /&gt;
#include &amp;quot;qt6-dialogs/PropertyDialog.h&amp;quot;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Add_Existing_Ditectory.jpg&amp;diff=171</id>
		<title>檔案:Add Existing Ditectory.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:Add_Existing_Ditectory.jpg&amp;diff=171"/>
		<updated>2024-04-12T07:46:37Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;QT - Add Existing Ditectory&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:QT-%E6%96%B0%E5%B0%88%E6%A1%88.jpg&amp;diff=170</id>
		<title>檔案:QT-新專案.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:QT-%E6%96%B0%E5%B0%88%E6%A1%88.jpg&amp;diff=170"/>
		<updated>2024-04-12T07:45:39Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;QT-新專案&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=169</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=169"/>
		<updated>2024-04-12T02:34:36Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文使用IC Imaging Control 4，此僅支援Windows 10 以上版本&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
&lt;br /&gt;
其他IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|601x601像素]]&lt;br /&gt;
# 初始化[https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.Library.html IC Imaging Control 4 .NET library] 加入以下命令初始化函示庫&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
 ic4.Library.Init(apiLogLevel:ic4.LogLevel.Warning, internalLogLevel: ic4.LogLevel.Debug, logTargets: ic4.LogTarget.File, logFilePath: &amp;quot;test.log&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=168</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=168"/>
		<updated>2024-04-12T02:34:20Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文使用IC Imaging Control 4，此僅支援Windows 10 以上版本&lt;br /&gt;
&lt;br /&gt;
範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
&lt;br /&gt;
其他IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|601x601像素]]&lt;br /&gt;
# 初始化[https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.Library.html IC Imaging Control 4 .NET library] 加入以下命令初始化函示庫&amp;lt;syntaxhighlight lang=&amp;quot;c#&amp;quot;&amp;gt;&lt;br /&gt;
 ic4.Library.Init(apiLogLevel:ic4.LogLevel.Warning, internalLogLevel: ic4.LogLevel.Debug, logTargets: ic4.LogTarget.File, logFilePath: &amp;quot;test.log&amp;quot;);&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:5._%E6%96%B0%E5%A2%9EIC4%E5%B7%A5%E5%85%B7.jpg&amp;diff=167</id>
		<title>檔案:5. 新增IC4工具.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:5._%E6%96%B0%E5%A2%9EIC4%E5%B7%A5%E5%85%B7.jpg&amp;diff=167"/>
		<updated>2024-04-12T02:14:41Z</updated>

		<summary type="html">&lt;p&gt;Verna：​Verna上傳了檔案:5. 新增IC4工具.jpg的新版本&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 新增IC4工具&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=166</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=166"/>
		<updated>2024-04-11T07:58:57Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文適用於The Imaging Source 相機&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 範例可透過連結下載: https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet&lt;br /&gt;
# 其他IC Imaging Control 4 .NET 文件可參考連結: https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=165</id>
		<title>Visual Studio .NET IC4 套件安裝指南</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=Visual_Studio_.NET_IC4_%E5%A5%97%E4%BB%B6%E5%AE%89%E8%A3%9D%E6%8C%87%E5%8D%97&amp;diff=165"/>
		<updated>2024-04-11T07:58:09Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「Visual Studio .NET IC4 套件安裝指南 - 本文適用於The Imaging Source 相機  # 開啟Visual Studio，並新增專案600x600像素 # 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64600x600像素 # 新增專案平台x64600x600像素 # 方案總管裡…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 本文適用於The Imaging Source 相機&lt;br /&gt;
&lt;br /&gt;
# 開啟Visual Studio，並新增專案[[檔案:1. CreatProject.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 在方案總管裡點選滑鼠右鍵 -&amp;gt; 屬性 -&amp;gt; 建置 -&amp;gt; 取消勾選 建議使用32位元，並將 平台目標更改為x64[[檔案:2. 屬性.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增專案平台x64[[檔案:3. 設定專案平台.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 方案總管裡點選滑鼠右鍵 -&amp;gt; 管理NuGet套件 -&amp;gt; 並安裝以下套件[[檔案:4. 安裝套件.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 新增 ic4dotnet工具[[檔案:5. 新增IC4工具.jpg|無|縮圖|600x600像素]]&lt;br /&gt;
# 範例可透過連結下載: &amp;lt;nowiki&amp;gt;https://github.com/TheImagingSource/ic4-examples/tree/master/dotnet/&amp;lt;/nowiki&amp;gt; 其他IC Imaging Control 4 .NET 文件可參考連結: &amp;lt;nowiki&amp;gt;https://www.theimagingsource.com/en-us/documentation/ic4dotnet/api/ic4.html&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:5._%E6%96%B0%E5%A2%9EIC4%E5%B7%A5%E5%85%B7.jpg&amp;diff=164</id>
		<title>檔案:5. 新增IC4工具.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:5._%E6%96%B0%E5%A2%9EIC4%E5%B7%A5%E5%85%B7.jpg&amp;diff=164"/>
		<updated>2024-04-11T07:18:42Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 新增IC4工具&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:4._%E5%AE%89%E8%A3%9D%E5%A5%97%E4%BB%B6.jpg&amp;diff=163</id>
		<title>檔案:4. 安裝套件.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:4._%E5%AE%89%E8%A3%9D%E5%A5%97%E4%BB%B6.jpg&amp;diff=163"/>
		<updated>2024-04-11T07:15:23Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 安裝套件&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:3._%E8%A8%AD%E5%AE%9A%E5%B0%88%E6%A1%88%E5%B9%B3%E5%8F%B0.jpg&amp;diff=162</id>
		<title>檔案:3. 設定專案平台.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:3._%E8%A8%AD%E5%AE%9A%E5%B0%88%E6%A1%88%E5%B9%B3%E5%8F%B0.jpg&amp;diff=162"/>
		<updated>2024-04-11T07:12:39Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 設定專案平台&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:2._%E5%B1%AC%E6%80%A7.jpg&amp;diff=161</id>
		<title>檔案:2. 屬性.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:2._%E5%B1%AC%E6%80%A7.jpg&amp;diff=161"/>
		<updated>2024-04-11T07:11:40Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - 屬性&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:1._CreatProject.jpg&amp;diff=160</id>
		<title>檔案:1. CreatProject.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:1._CreatProject.jpg&amp;diff=160"/>
		<updated>2024-04-11T07:06:16Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Visual Studio .NET IC4 套件安裝指南 - CreatProject&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8%E6%A8%B9%E8%8E%93%E6%B4%BE4%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=159</id>
		<title>如何在樹莓派4上使用兆鎂新相機</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%A6%82%E4%BD%95%E5%9C%A8%E6%A8%B9%E8%8E%93%E6%B4%BE4%E4%B8%8A%E4%BD%BF%E7%94%A8%E5%85%86%E9%8E%82%E6%96%B0%E7%9B%B8%E6%A9%9F&amp;diff=159"/>
		<updated>2024-03-26T04:55:58Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;本文僅適用於 樹莓派4 上的 32 位元 Raspbian。   &lt;br /&gt;
&lt;br /&gt;
=== &#039;&#039;&#039;基本步驟&#039;&#039;&#039; ===&lt;br /&gt;
[[檔案:Win32diskimager select.png|縮圖]]&lt;br /&gt;
下載映像檔並安裝標準 32 位元 [https://www.raspberrypi.com/software/operating-systems/ Raspbian]，可以利用[https://www.raspberrypi.com/software/ 樹梅派官網提供的燒錄軟體]或是 [https://sourceforge.net/projects/win32diskimager/files/Archive/ Win32 Disk Imager win32diskimager-1.0.0-install.exe] 將映像檔案燒入至SD 卡中。&lt;br /&gt;
&lt;br /&gt;
可使用以下命令更新系統。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
sudo apt update&lt;br /&gt;
sudo apt upgrade&lt;br /&gt;
sudo apt autoremove&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== 安裝檔案 ===&lt;br /&gt;
&lt;br /&gt;
==== Tiscamera： ====&lt;br /&gt;
從[https://www.theimagingsource.com/zh-hant-tw/support/download/ The Image Source 首頁 -&amp;gt; 支援 -&amp;gt;下載]：&lt;br /&gt;
&lt;br /&gt;
GStreamer 外掛程式 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameraarm6432-1.1.0.4139/ tiscamera Linux 32 Bit Camera Library for ARMHF Architecture]&lt;br /&gt;
&lt;br /&gt;
現在 USB 和 GigE 相機可以與 tcam-capture 一起使用。 也可以進行Python編程。&lt;br /&gt;
&lt;br /&gt;
==== 最佳化： ====&lt;br /&gt;
安裝 GStreamer 插件 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/tiscameradutilsarmhfpi-1.0.0.560/ tcamdutils 32 Bit for Raspberry PI OS]&lt;br /&gt;
&lt;br /&gt;
這安裝了更快的去拜耳處理、色調映射和更多屬性。&lt;br /&gt;
&lt;br /&gt;
==== MIPI 相機： ====&lt;br /&gt;
GStreamer 外掛程式 -&amp;gt; [https://www.theimagingsource.com/zh-hant-tw/support/download/pimipisrc-1.3.0.662/ Raspberry PI GStreamer Source for The Imaging Source MIPI Cameras]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
可利用下列命令安裝後，請關機後再連接相機。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
cd /home/pi/Downloads #請至存放檔案之路徑&lt;br /&gt;
sudo apt install ./tiscamera_1.1.0.4139_armhf_pi4_raspbian_10 .deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./tcamdutils_1.0.0.560_armhf_pi4.deb #選擇安裝的檔案&lt;br /&gt;
sudo apt install ./tcampimipisrc_1.3.0.662_armhf.deb #選擇安裝的檔案&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;下圖為使用FPD-Link相機模組與連接MIPI相機之範例。&lt;br /&gt;
[[檔案:RaspberryPi ConnectCamera.jpg|左|縮圖|500x500像素]]&lt;br /&gt;
[[檔案:RaspberryPi MIPICamera.jpg|無|縮圖]]&lt;br /&gt;
[[檔案:RaspberryPi tcam capture.png|縮圖|500x500像素]]&lt;br /&gt;
選擇裝置並確認相機可使用。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
tcam-capture&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== C++程式設計： ===&lt;br /&gt;
開發安裝包可以從The Image Source Github中下載: https://github.com/TheImagingSource/tiscamera/releases/tag/v-tiscamera-1.1.1&lt;br /&gt;
&lt;br /&gt;
=== 重置SD卡： ===&lt;br /&gt;
若需要重置SD卡，可用此方法。&lt;br /&gt;
[[檔案:Cleandisk.png|縮圖|500x500像素]]用系統管理員身分開啟命令提示字元。&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
diskpart&lt;br /&gt;
list disk&lt;br /&gt;
select disk x #選擇您的SD 卡磁碟&lt;br /&gt;
Clean&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
進入到 裝置管理員 → 磁碟管理 → 新增簡單磁碟區，完成後確認SD卡是否完整合併。&lt;br /&gt;
[[檔案:DiskManager.png|無|縮圖]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
如有任何疑問，請隨時透過 [https://www.theimagingsource.com/zh-hant-tw/company/contact/ The Imaging Source - 聯絡表單]與我們聯繫。&lt;br /&gt;
[[分類:Linux]]&lt;br /&gt;
[[分類:手冊]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=158</id>
		<title>使用Python 與 The Imaging Source 相機入門</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=158"/>
		<updated>2024-03-25T09:08:14Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;使用 Python 以及 C、C++ 和 C#，您可以完成以下操作：&lt;br /&gt;
&lt;br /&gt;
* 顯示視訊串流&lt;br /&gt;
* 手動和自動捕捉單張影像&lt;br /&gt;
* 擷取視訊&lt;br /&gt;
* 設定所有相機屬性&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Windows:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝 Imagingcontrol4 輸入指令安裝Imagingcontrol4&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
python3 -m pip install imagingcontrol4&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;或是在Visual Studio Python環境裡選擇安裝imagingcontrol4套件，如下圖：[[檔案:VS install python imagingcontrol4.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
* 驅動 [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/ GigE Vision 相機 GenTL Producer]  [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodu3vwintis-1.0.0.224/ /  USB3 Vision 相機 GenTL Producer (BETA)] [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodlegacywintis-2.0.0.387/ / 非 GenICam 相機的 GenTL Producer (BETA)]&lt;br /&gt;
&lt;br /&gt;
* 範例可透過連結下載 https://github.com/TheImagingSource/ic4-examples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
擷取影像的範例:&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
import imagingcontrol4 as ic4&lt;br /&gt;
ic4.Library.init()&lt;br /&gt;
&lt;br /&gt;
# Create a Grabber object&lt;br /&gt;
grabber = ic4.Grabber()&lt;br /&gt;
&lt;br /&gt;
# Open the first available video capture device&lt;br /&gt;
first_device_info = ic4.DeviceEnum.devices()[0]&lt;br /&gt;
grabber.device_open(first_device_info)&lt;br /&gt;
&lt;br /&gt;
# Set the resolution to 640x480&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)&lt;br /&gt;
&lt;br /&gt;
# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.&lt;br /&gt;
sink = ic4.SnapSink()&lt;br /&gt;
# Setup data stream from the video capture device to the sink and start image acquisition.&lt;br /&gt;
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)&lt;br /&gt;
&lt;br /&gt;
try:&lt;br /&gt;
    # Grab a single image out of the data stream.&lt;br /&gt;
    image = sink.snap_single(1000)&lt;br /&gt;
&lt;br /&gt;
    # Print image information.&lt;br /&gt;
    print(f&amp;quot;Received an image. ImageType: {image.image_type}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # Save the image.&lt;br /&gt;
    image.save_as_bmp(&amp;quot;test.bmp&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
except ic4.IC4Exception as ex:&lt;br /&gt;
    print(ex.message)&lt;br /&gt;
	&lt;br /&gt;
# Stop the data stream.&lt;br /&gt;
grabber.stream_stop()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Linux:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝：請至[https://www.theimagingsource.com/zh-hant-tw/support/download/ The Imaging Source官網]，「軟體開發套件」一章。 根據您的 Linux 平台下載「tiscamera」。&lt;br /&gt;
* 文獻參考 https://www.theimagingsource.com/en-us/documentation/tiscamera/&lt;br /&gt;
* 範例 https://github.com/TheImagingSource/tiscamera/tree/master/examples/python /  https://github.com/TheImagingSource/Linux-tiscamera-Programming-Samples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
程式範例：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import time&lt;br /&gt;
import sys&lt;br /&gt;
import gi&lt;br /&gt;
&lt;br /&gt;
gi.require_version(&amp;quot;Gst&amp;quot;, &amp;quot;1.0&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
from gi.repository import Gst&lt;br /&gt;
&lt;br /&gt;
def main():&lt;br /&gt;
&lt;br /&gt;
    Gst.init(sys.argv)  # init gstreamer&lt;br /&gt;
&lt;br /&gt;
    serial = None&lt;br /&gt;
&lt;br /&gt;
    pipeline = Gst.parse_launch(&amp;quot;tcambin name=bin &amp;quot;&lt;br /&gt;
                                &amp;quot; ! videoconvert&amp;quot;&lt;br /&gt;
                                &amp;quot; ! ximagesink sync=false&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # retrieve the bin element from the pipeline&lt;br /&gt;
    camera = pipeline.get_by_name(&amp;quot;bin&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # serial is defined, thus make the source open that device&lt;br /&gt;
    if serial is not None:&lt;br /&gt;
        camera.set_property(&amp;quot;serial&amp;quot;, serial)&lt;br /&gt;
&lt;br /&gt;
    pipeline.set_state(Gst.State.PLAYING)&lt;br /&gt;
&lt;br /&gt;
    print(&amp;quot;Press Ctrl-C to stop.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # We wait with this thread until a&lt;br /&gt;
    # KeyboardInterrupt in the form of a Ctrl-C&lt;br /&gt;
    # arrives. This will cause the pipline&lt;br /&gt;
    # to be set to state NULL&lt;br /&gt;
    try:&lt;br /&gt;
        while True:&lt;br /&gt;
            time.sleep(1)&lt;br /&gt;
    except KeyboardInterrupt:&lt;br /&gt;
        pass&lt;br /&gt;
    finally:&lt;br /&gt;
        pipeline.set_state(Gst.State.NULL)&lt;br /&gt;
&lt;br /&gt;
if __name__ == &amp;quot;__main__&amp;quot;:&lt;br /&gt;
    main()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%88%86%E9%A1%9E:%E7%A8%8B%E5%BC%8F&amp;diff=157</id>
		<title>分類:程式</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E5%88%86%E9%A1%9E:%E7%A8%8B%E5%BC%8F&amp;diff=157"/>
		<updated>2024-03-25T09:05:49Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「程式設計相關文章。」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;程式設計相關文章。&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=156</id>
		<title>使用Python 與 The Imaging Source 相機入門</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E4%BD%BF%E7%94%A8Python_%E8%88%87_The_Imaging_Source_%E7%9B%B8%E6%A9%9F%E5%85%A5%E9%96%80&amp;diff=156"/>
		<updated>2024-03-25T09:03:34Z</updated>

		<summary type="html">&lt;p&gt;Verna：​建立內容為「使用 Python 以及 C、C++ 和 C#，您可以完成以下操作：  * 顯示視訊串流 * 手動和自動捕捉單張影像 * 擷取視訊 * 設定所有相機屬性  &amp;#039;&amp;#039;&amp;#039;&amp;lt;big&amp;gt;Windows:&amp;lt;/big&amp;gt;&amp;#039;&amp;#039;&amp;#039;  * 安裝 Imagingcontrol4 輸入指令安裝Imagingcontrol4&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt; python3 -m pip install imagingcontrol4 &amp;lt;/syntaxhighlight&amp;gt;或是在Visual Studio Python環境裡選擇安裝imagingcontrol4套件，如下圖：檔案:VS install python imag…」的新頁面&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;使用 Python 以及 C、C++ 和 C#，您可以完成以下操作：&lt;br /&gt;
&lt;br /&gt;
* 顯示視訊串流&lt;br /&gt;
* 手動和自動捕捉單張影像&lt;br /&gt;
* 擷取視訊&lt;br /&gt;
* 設定所有相機屬性&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Windows:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝 Imagingcontrol4 輸入指令安裝Imagingcontrol4&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
python3 -m pip install imagingcontrol4&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;或是在Visual Studio Python環境裡選擇安裝imagingcontrol4套件，如下圖：[[檔案:VS install python imagingcontrol4.jpg|無|縮圖|500x500像素]]&lt;br /&gt;
&lt;br /&gt;
* 驅動 [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodgevwintis-1.0.0.554/ GigE Vision 相機 GenTL Producer] [https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodu3vwintis-1.0.0.224/ USB3 Vision 相機 GenTL Producer (BETA)][https://www.theimagingsource.com/zh-hant-tw/support/download/ic4gentlprodlegacywintis-2.0.0.387/ 非 GenICam 相機的 GenTL Producer (BETA)]&lt;br /&gt;
&lt;br /&gt;
* 範例可透過連結下載 https://github.com/TheImagingSource/ic4-examples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
擷取影像的範例:&amp;lt;syntaxhighlight lang=&amp;quot;python3&amp;quot;&amp;gt;&lt;br /&gt;
import imagingcontrol4 as ic4&lt;br /&gt;
ic4.Library.init()&lt;br /&gt;
&lt;br /&gt;
# Create a Grabber object&lt;br /&gt;
grabber = ic4.Grabber()&lt;br /&gt;
&lt;br /&gt;
# Open the first available video capture device&lt;br /&gt;
first_device_info = ic4.DeviceEnum.devices()[0]&lt;br /&gt;
grabber.device_open(first_device_info)&lt;br /&gt;
&lt;br /&gt;
# Set the resolution to 640x480&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.WIDTH, 640)&lt;br /&gt;
grabber.device_property_map.set_value(ic4.PropId.HEIGHT, 480)&lt;br /&gt;
&lt;br /&gt;
# Create a SnapSink. A SnapSink allows grabbing single images (or image sequences) out of a data stream.&lt;br /&gt;
sink = ic4.SnapSink()&lt;br /&gt;
# Setup data stream from the video capture device to the sink and start image acquisition.&lt;br /&gt;
grabber.stream_setup(sink, setup_option=ic4.StreamSetupOption.ACQUISITION_START)&lt;br /&gt;
&lt;br /&gt;
try:&lt;br /&gt;
    # Grab a single image out of the data stream.&lt;br /&gt;
    image = sink.snap_single(1000)&lt;br /&gt;
&lt;br /&gt;
    # Print image information.&lt;br /&gt;
    print(f&amp;quot;Received an image. ImageType: {image.image_type}&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # Save the image.&lt;br /&gt;
    image.save_as_bmp(&amp;quot;test.bmp&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
except ic4.IC4Exception as ex:&lt;br /&gt;
    print(ex.message)&lt;br /&gt;
	&lt;br /&gt;
# Stop the data stream.&lt;br /&gt;
grabber.stream_stop()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;&amp;lt;big&amp;gt;Linux:&amp;lt;/big&amp;gt;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* 安裝：請至[https://www.theimagingsource.com/zh-hant-tw/support/download/ The Imaging Source官網]，「軟體開發套件」一章。 根據您的 Linux 平台下載「tiscamera」。&lt;br /&gt;
* 文獻參考 https://www.theimagingsource.com/en-us/documentation/tiscamera/&lt;br /&gt;
* 範例 https://github.com/TheImagingSource/tiscamera/tree/master/examples/python https://github.com/TheImagingSource/Linux-tiscamera-Programming-Samples/tree/master/python&lt;br /&gt;
&lt;br /&gt;
程式範例：&amp;lt;syntaxhighlight lang=&amp;quot;python&amp;quot;&amp;gt;&lt;br /&gt;
import time&lt;br /&gt;
import sys&lt;br /&gt;
import gi&lt;br /&gt;
&lt;br /&gt;
gi.require_version(&amp;quot;Gst&amp;quot;, &amp;quot;1.0&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
from gi.repository import Gst&lt;br /&gt;
&lt;br /&gt;
def main():&lt;br /&gt;
&lt;br /&gt;
    Gst.init(sys.argv)  # init gstreamer&lt;br /&gt;
&lt;br /&gt;
    serial = None&lt;br /&gt;
&lt;br /&gt;
    pipeline = Gst.parse_launch(&amp;quot;tcambin name=bin &amp;quot;&lt;br /&gt;
                                &amp;quot; ! videoconvert&amp;quot;&lt;br /&gt;
                                &amp;quot; ! ximagesink sync=false&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # retrieve the bin element from the pipeline&lt;br /&gt;
    camera = pipeline.get_by_name(&amp;quot;bin&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # serial is defined, thus make the source open that device&lt;br /&gt;
    if serial is not None:&lt;br /&gt;
        camera.set_property(&amp;quot;serial&amp;quot;, serial)&lt;br /&gt;
&lt;br /&gt;
    pipeline.set_state(Gst.State.PLAYING)&lt;br /&gt;
&lt;br /&gt;
    print(&amp;quot;Press Ctrl-C to stop.&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
    # We wait with this thread until a&lt;br /&gt;
    # KeyboardInterrupt in the form of a Ctrl-C&lt;br /&gt;
    # arrives. This will cause the pipline&lt;br /&gt;
    # to be set to state NULL&lt;br /&gt;
    try:&lt;br /&gt;
        while True:&lt;br /&gt;
            time.sleep(1)&lt;br /&gt;
    except KeyboardInterrupt:&lt;br /&gt;
        pass&lt;br /&gt;
    finally:&lt;br /&gt;
        pipeline.set_state(Gst.State.NULL)&lt;br /&gt;
&lt;br /&gt;
if __name__ == &amp;quot;__main__&amp;quot;:&lt;br /&gt;
    main()&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
[[分類:手冊]]&lt;br /&gt;
[[分類:程式]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:VS_install_python_imagingcontrol4.jpg&amp;diff=155</id>
		<title>檔案:VS install python imagingcontrol4.jpg</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E6%AA%94%E6%A1%88:VS_install_python_imagingcontrol4.jpg&amp;diff=155"/>
		<updated>2024-03-25T08:25:29Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;VS install python imagingcontrol4&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%A6%96%E9%A0%81&amp;diff=154</id>
		<title>首頁</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%A6%96%E9%A0%81&amp;diff=154"/>
		<updated>2024-03-25T07:56:18Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[檔案:Tis-logo2.svg|置中]]&lt;br /&gt;
[[File:Cameramusians2.png|right|300x300px|The four camera musicians]]&lt;br /&gt;
&lt;br /&gt;
=== 歡迎來到 The Imaging Source 維基知識庫和常見問題解答 ===&lt;br /&gt;
歡迎來到 The Imaging Source 的維基知識庫。&lt;br /&gt;
&lt;br /&gt;
在這裡，您可以找到有關我們產品的常見問題解答，以及關於我們工業相機、轉換器和影像擷取卡的文件和故障排除提示。&lt;br /&gt;
&lt;br /&gt;
歡迎瀏覽我們的網站 [Https://www.theimagingsource.com https://www.theimagingsource.com]&lt;br /&gt;
&lt;br /&gt;
=== 分類 ===&lt;br /&gt;
&lt;br /&gt;
* [[:分類: IC Capture]]&lt;br /&gt;
* [[:分類: Linux]]&lt;br /&gt;
* [[:分類: 手冊]]&lt;br /&gt;
* [[:分類: 故障排除]]&lt;br /&gt;
* [[:分類: 程式]]&lt;br /&gt;
=== 內容 ===&lt;br /&gt;
{{Special:AllPages|All pages}}&lt;br /&gt;
&lt;br /&gt;
[[de:Hauptseite]]&lt;br /&gt;
[[en:]]&lt;br /&gt;
[[zh-cn:]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
	<entry>
		<id>http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%A6%96%E9%A0%81&amp;diff=153</id>
		<title>首頁</title>
		<link rel="alternate" type="text/html" href="http://zh-tw.wiki.theimagingsource.com/index.php?title=%E9%A6%96%E9%A0%81&amp;diff=153"/>
		<updated>2024-03-25T06:24:08Z</updated>

		<summary type="html">&lt;p&gt;Verna：​&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[檔案:Tis-logo2.svg|置中]]&lt;br /&gt;
[[File:Cameramusians2.png|right|300x300px|The four camera musicians]]&lt;br /&gt;
&lt;br /&gt;
=== 歡迎來到 The Imaging Source 知識庫和常見問題解答 ===&lt;br /&gt;
歡迎來到 The Imaging Source 的知識庫 Wiki。&lt;br /&gt;
&lt;br /&gt;
在這裡，您可以找到有關我們產品的常見問題解答，以及關於我們工業相機、轉換器和影像擷取卡的文件和故障排除提示。&lt;br /&gt;
&lt;br /&gt;
歡迎瀏覽我們的網站 [Https://www.theimagingsource.com https://www.theimagingsource.com]&lt;br /&gt;
&lt;br /&gt;
=== 分類 ===&lt;br /&gt;
&lt;br /&gt;
* [[:分類: IC Capture]]&lt;br /&gt;
* [[:分類: Linux]]&lt;br /&gt;
* [[:分類: 手冊]]&lt;br /&gt;
* [[:分類: 故障排除]]&lt;br /&gt;
* [[:分類: 程式]]&lt;br /&gt;
=== 內容 ===&lt;br /&gt;
{{Special:AllPages|All pages}}&lt;br /&gt;
&lt;br /&gt;
[[de:Hauptseite]]&lt;br /&gt;
[[en:]]&lt;br /&gt;
[[zh-cn:]]&lt;/div&gt;</summary>
		<author><name>Verna</name></author>
	</entry>
</feed>