상위 목록: 하위 목록: 작성 날짜: 읽는 데 6 분 소요

그레이스케일(GrayScale)

영상이나 이미지의 색상을 흑백 색상으로 변환하기 위해서 사용합니다.

원본(Source, src)은 영상이나 이미지를 사용합니다.



클래스 코드

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using OpenCvSharp;

namespace Project
{
    class OpenCV : IDisposable
    {
        IplImage gray;
            
        public IplImage GrayScale(IplImage src)
        {
            gray = new IplImage(src.Size, BitDepth.U8, 1);
            Cv.CvtColor(src, gray, ColorConversion.BgrToGray);
            return gray;
        }
            
        public void Dispose()
        {
            if (gray != null) Cv.ReleaseImage(gray);
        }
    }
}


세부 코드

public IplImage GrayScale(IplImage src)
{
    ...
}

GrayScale에서 영상을 흑백으로 변하게 됩니다.


gray = new IplImage(src.Size, BitDepth.U8, 1);

gray에 메모리 확보를 위하여 선언합니다.

IplImage(크기, 정밀도, 채널)을 입력합니다.

단색일 경우 채널은 1이며, 다색일 경우 채널은 3입니다.

  • Tip : GrayScale은 단색이기 때문에 채널은 1입니다.


Cv.CvtColor(src, gray, ColorConversion.BgrToGray);

Cv.CvtColor()을 이용하여 변환될 색상을 설정합니다.

Cv.CvtColor(원본, 결과, 변환)을 의미합니다.

ColorConversion.BgrToGray를 이용하여 Bgr색상Gray색상으로 변환합니다.

  • Tip : ColorConversion.*을 이용하여 다른 변환도 가능합니다.



메인 코드

using (OpenCV Convert = new OpenCV())
{
    pictureBoxIpl2.ImageIpl = Convert.GrayScale(src)) ;
}

GrayScale흑백의 이미지를 표시합니다.



출력 결과

GrayScale


BgrToCrcb (채널 : 3)


BgrToLab (채널 : 3)


BgrToLuv (채널 : 3)


BgrToXyz (채널 : 3)


BgrToYuv (채널 : 3)

댓글 남기기