私は画像の色を交換するというこの仕事をしています。青から赤、赤から緑、緑から青に変更します。私は3つのアプローチを試しましたが、すべて失敗しました。以下は3つのアプローチです。
RGBを分割して値を取得し、それらを交換します。私が得たのはBW画像だけです。
#include <iostream>
#include <cv.h>
#include <highgui.h>
#include "rgb.h"
using namespace std;
int main()
{
char infname[256];
cout << "Enter input image : ";
cin >> infname;
IplImage *img = cvLoadImage(infname, 0);
RgbImage pic(img);
int H = img->height;
int W = img->width;
IplImage* channelRed = cvCreateImage(cvGetSize(img), 8, 1);
IplImage* channelGreen = cvCreateImage(cvGetSize(img), 8, 1);
IplImage* channelBlue = cvCreateImage(cvGetSize(img), 8, 1);
IplImage* blue = cvCreateImage(cvGetSize(img), 8, 1);
IplImage* green = cvCreateImage(cvGetSize(img), 8, 1);
IplImage* red= cvCreateImage(cvGetSize(img), 8, 1);
cvSplit(img, channelBlue, channelGreen, channelRed, NULL);
cvThreshold(channelBlue, blue, 20, 255, CV_THRESH_BINARY);
cvThreshold(channelGreen, green, 20, 255, CV_THRESH_BINARY);
cvThreshold(channelRed, red, 20, 255, CV_THRESH_BINARY);
cvShowImage("original", img);
cvShowImage("blue", blue);
cvShowImage("green", green);
cvShowImage("red", red);
cvWaitKey(0);
return 0;
}
2つ目は、output [j] [i] .r = pic [j][i].gを作成するだけでRGB値を直接交換することです。
#include <iostream>
#include <cv.h>
#include <highgui.h>
#include "rgb.h"
using namespace std;
int main(){
IplImage *img = NULL, *out = NULL;
img = cvLoadImage("rgb.jpg");
RgbImage pic(img);
RgbImage outpic(out);
int H = img -> height;
int W = img -> width;
for(int j=0;j<H;j++){
for(int i=0;i<W;i++){
pic[j][i].r = outpic[j][i].g;
pic[j][i].g = outpic[j][i].b;
pic[j][i].b = outpic[j][i].r;
}
}
cvNamedWindow("image", CV_WINDOW_AUTOSIZE);
cvShowImage("image", img);
cvNamedWindow("Output", CV_WINDOW_AUTOSIZE);
cvShowImage("Output", out);
cvWaitKey(0);
cvReleaseImage(&img);
}
最後に、同じサイズの青、赤、緑のフィルター画像を作成し、対象のチャネルに255を入力し、他のチャネルにすべてゼロを入力してRGB値を取得し、それらをインターハングします。私が得たのは、青、赤、緑で塗りつぶされた3つの画像だけです。入力した画像をBWにしました。
#include <iostream>
#include <cv.h>
#include <highgui.h>
#include "rgb.h"
#include <cmath>
using namespace std;
int main()
{
char infname[256];
cout << "Enter input image : ";
cin >> infname;
IplImage *img = cvLoadImage(infname, 0);
RgbImage pic(img);
int H = img->height;
int W = img->width;
IplImage* redfilter = cvCreateImage(cvGetSize(img),8,3);
IplImage* greenfilter = cvCreateImage(cvGetSize(img),8,3);
IplImage* bluefilter = cvCreateImage(cvGetSize(img),8,3);
for (int y=0;y<H;y++)
for (int x=0;x<W;x++) {
CV_IMAGE_ELEM(redfilter,unsigned char, y, 3*x + 0) = 0;
CV_IMAGE_ELEM(redfilter,unsigned char, y, 3*x + 1) = 0;
CV_IMAGE_ELEM(redfilter,unsigned char, y, 3*x + 2) = 255;
}
for (int y=0;y<H;y++)
for (int x=0;x<W;x++) {
CV_IMAGE_ELEM(greenfilter,unsigned char, y, 3*x + 0) = 0;
CV_IMAGE_ELEM(greenfilter,unsigned char, y, 3*x + 1) = 255;
CV_IMAGE_ELEM(greenfilter,unsigned char, y, 3*x + 2) = 0;
}
for (int y=0;y<H;y++)
for (int x=0;x<W;x++) {
CV_IMAGE_ELEM(bluefilter,unsigned char, y, 3*x + 0) = 255;
CV_IMAGE_ELEM(bluefilter,unsigned char, y, 3*x + 1) = 0;
CV_IMAGE_ELEM(bluefilter,unsigned char, y, 3*x + 2) = 0;
}
cvShowImage("original", img);
cvShowImage("red", redfilter);
cvShowImage("green", greenfilter);
cvShowImage("blue", bluefilter);
cvWaitKey(0);
return 0;
}
私はこれらのアプローチのすべてが間違っていることを知っています。入力した画像の色を入れ替える方法を教えてください。
ありがとう。