vision-pilot

(★ 9)

一套基于 C# 与 .NET 6 构建的工业视觉检测上位机系统,实现了从图像采集、算子处理、工业通信到数据追溯的全链路自动化控制。

vision-pilot 최신버젼 다운로드

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

dotnet restore

설명 보기 ▼

Restores the dependencies and tools of a .NET project.

dotnet restore

Restore dependencies for a .NET project or solution in the current directory:

dotnet restore {{path/to/project_or_solution}}

Restore dependencies for a .NET project or solution in a specific location:

dotnet restore --no-http-cache

Restore dependencies without caching the HTTP requests:

🔍

dotnet run

설명 보기 ▼

Run a .NET application without explicit compile or launch commands.

dotnet run

Run the project in the current directory:

dotnet run --project {{path/to/file.csproj}}

Run a specific project:

dotnet run -- {{arg1=foo arg2=bar ...}}

Run the project with specific arguments:

🔍

dotnet test

설명 보기 ▼

Execute tests for a .NET application.
Note: View <https://learn.microsoft.com/dotnet/core/testing/selective-unit-tests> for supported filter expressions.

dotnet test

Execute tests for a .NET project/solution in the current directory:

dotnet test {{path/to/project_or_solution}}

Execute tests for a .NET project/solution in a specific location:

dotnet test --filter {{Name~TestMethod1}}

Execute tests matching the given filter expression:

🔍

opt

설명 보기 ▼

LLVM 소스 파일을 최적화하고 분석합니다.
더 많은 정보: <https://llvm.org/docs/CommandGuide/opt.html>.

opt -{{passname}} {{path/to/file.bc}} -S -o {{file_opt.bc}}

비트코드 파일에 최적화 또는 분석 실행:

opt {{-dot-cfg}} -S {{path/to/file.bc}} -disable-output

함수의 제어 흐름 그래프를 `.dot` 파일로 출력:

opt -O2 {{path/to/file.bc}} -S -o {{path/to/output_file.bc}}

프로그램을 2단계로 최적화하고 결과를 다른 파일로 출력:

🔍

powershell

설명 보기 ▼

이 명령은 `powershell` 대신 `pwsh`를 사용하는 크로스 플랫폼 버전의 PowerShell(이전에는 PowerShell Core로 알려짐)과 혼동될 수 있습니다.
Windows의 원본 `powershell` 명령은 레거시 Windows 버전의 PowerShell(버전 5.1 이하)을 사용하는 데 여전히 사용할 수 있습니다.
더 많은 정보: <https://learn.microsoft.com/powershell/module/microsoft.powershell.core/about/about_pwsh>.

tldr pwsh

최신 크로스 플랫폼 버전의 PowerShell(버전 6 이상)의 명령에 대한 문서 보기:

powershell

대화형 쉘 세션 시작:

tldr powershell {{[-p|--platform]}} windows

레거시 Windows PowerShell(버전 5.1 이하)의 명령에 대한 문서 보기:

# 프로젝트 배지

// repository documentation