[ C# Cognex ] 씨샾 코그넥스 - 이미지 디스플레이

[ C# Cognex ] 씨샾 코그넥스 - 이미지 디스플레이



1. Windows Forms 앱 

    - 신규 프로젝트 생성



2. 도구 상자

    - CogDisplay 추가



3. Form1 속성 이벤트

    - Form1_Load 추가



4. 솔루션 탐색기

    - 프로젝트 참조
    - Cognex.VisionPro. 참조 확인



5. Form1.cs

==========
using System;
using System.Drawing;
using System.Windows.Forms;

using Cognex.VisionPro;

namespace CogImageView
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            string szImagePath = null;
            Bitmap bitmap = null;
            ICogImage iCogImage = null;

            // 이미지 경로 및 이름 저장
            szImagePath = @"D:\Cognex\Image\1.bmp";

            // 경로 이미지 bitmap 변환
            bitmap = new Bitmap(szImagePath);

            // bitmap 이미지 CogImage 변환
            iCogImage = new CogImage8Grey(bitmap);

            // CogDisplay 핏 뷰어 적용 후 이미지 출력 
            cogDisplay1.AutoFit = true;
            cogDisplay1.Image = iCogImage;
        }
    }
}
==========


6. 결과 출력






댓글