Domain Transform Filter の実装
2013年9月24日 update
こんにちは。今日は久しぶりに画像処理のプログラムをアップしたいと思います。
今回紹介するプログラムは、2011年にSIGGRAPHで発表された
Gastal and Oliveira, “Domain Transform for Edge-Aware Image and Video Processing”, ACM Trans, Graph, 30 (4), pp.69:1-69:11, 2011.
という論文の手法です。
少し画像処理を勉強したことがある人なら、バイラテラル・フィルタという名前を聞いたことがある人も多いと思います。バイラテラル・フィルタは画像全体をぼかすのではなく、輪郭線を残しながら、細かな特徴だけを滑らかにするフィルタです。
バイラテラル・フィルタのようなフィルタをエッジ保存型フィルタ(Edge-preserving filter)などと呼び、このエッジ保存型フィルタをより高速に、より高精度にするため様々な研究が現在もされています。
今回紹介する「Domain Transform Filtering」(これは僕が勝手に言ってる名前です)は、フィルタ関数の定義域(domain)をあらかじめ変換(transform)し、エッジ保存型フィルタを線形のフィルタ処理により実現するというものです。
さらにこのアルゴリズムは、フィルタを画像の各行、各列に独立に適用できるので、並列化が容易です。GPUを用いて並列計算すれば、リアルタイムで動かすことも可能でしょう。
今回、私が書いたコードは、論文の中で紹介されている3つのフィルタのうちRecursive filterというもので、繰り返しフィルタを適用することで最終的な処理結果を得るというものです。より詳しい情報がほしい方は、論文をご覧ください。
結果
[入力画像 1]
[出力画像 1]
[入力画像 2]
[出力画像 2]
[入力画像 3]
[出力画像 3]
ソースコード
/***********************************************************
* Domain transform filtering implementation
************************************************************
* This code is an implementation of the paper [Gastal and Oliveira 2011].
* This paper proposes an edge-preserving filter,
* which is effectively parallelizable. This filter transforms
* the domain of the filter function, and performs linear filtering
* to the transfomed domain.
*
* usage: DomainTransformFiltering.exe [input_image] ([sigma_s] [sigma_r] [maxiter])
* (last three arguments are optional)
*
* This code is programmed by 'tatsy'. You can use this
* code for any purpose :-)
* If you are satisfied with the program and kind enough of
* cheering me up, please contact me from my github account
* "https://github.com/tatsy/". Thanks!
************************************************************/
#include <iostream>
#include <vector>
#include <ctime>
#include <omp.h>
using namespace std;
#include "opencv2/opencv.hpp"
long t, elapsed;
#define CLOCK_START t = clock();
#define CLOCK_END cout << "[ Time ]" << endl << " " << ((clock() - t) / 1000.0) << " sec" << endl;
// Recursive filter for vertical direction
void recursiveFilterVertical(cv::Mat& out, cv::Mat& dct, double sigma_H) {
int width = out.cols;
int height = out.rows;
int dim = out.channels();
double a = exp(-sqrt(2.0) / sigma_H);
cv::Mat V;
dct.convertTo(V, CV_64FC1);
for(int x=0; x<width; x++) {
for(int y=0; y<height-1; y++) {
V.at<double>(y, x) = pow(a, V.at<double>(y, x));
}
}
// if openmp is available, compute in parallel
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(int x=0; x<width; x++) {
for(int y=1; y<height; y++) {
double p = V.at<double>(y-1, x);
for(int c=0; c<dim; c++) {
double val1 = out.at<double>(y, x*dim+c);
double val2 = out.at<double>(y-1, x*dim+c);
out.at<double>(y, x*dim+c) = val1 + p * (val2 - val1);
}
}
for(int y=height-2; y>=0; y--) {
double p = V.at<double>(y, x);
for(int c=0; c<dim; c++) {
double val1 = out.at<double>(y, x*dim+c);
double val2 = out.at<double>(y+1, x*dim+c);
out.at<double>(y, x*dim+c) = val1 + p * (val2 - val1);
}
}
}
}
// Recursive filter for horizontal direction
void recursiveFilterHorizontal(cv::Mat& out, cv::Mat& dct, double sigma_H) {
int width = out.cols;
int height = out.rows;
int dim = out.channels();
double a = exp(-sqrt(2.0) / sigma_H);
cv::Mat V;
dct.convertTo(V, CV_64FC1);
for(int x=0; x<width-1; x++) {
for(int y=0; y<height; y++) {
V.at<double>(y, x) = pow(a, V.at<double>(y, x));
}
}
// if openmp is available, compute in parallel
#ifdef _OPENMP
#pragma omp parallel for
#endif
for(int y=0; y<height; y++) {
for(int x=1; x<width; x++) {
double p = V.at<double>(y, x-1);
for(int c=0; c<dim; c++) {
double val1 = out.at<double>(y, x*dim+c);
double val2 = out.at<double>(y, (x-1)*dim+c);
out.at<double>(y, x*dim+c) = val1 + p * (val2 - val1);
}
}
for(int x=width-2; x>=0; x--) {
double p = V.at<double>(y, x);
for(int c=0; c<dim; c++) {
double val1 = out.at<double>(y, x*dim+c);
double val2 = out.at<double>(y, (x+1)*dim+c);
out.at<double>(y, x*dim+c) = val1 + p * (val2 - val1);
}
}
}
}
// Domain transform filtering
void domainTransformFilter(cv::Mat& img, cv::Mat& out, cv::Mat& joint, double sigma_s, double sigma_r, int maxiter) {
assert(img.depth() == CV_64F && joint.depth() == CV_64F);
int width = img.cols;
int height = img.rows;
int dim = img.channels();
// compute derivatives of transformed domain "dct"
// and a = exp(-sqrt(2) / sigma_H) to the power of "dct"
cv::Mat dctx = cv::Mat(height, width-1, CV_64FC1);
cv::Mat dcty = cv::Mat(height-1, width, CV_64FC1);
double ratio = sigma_s / sigma_r;
for(int y=0; y<height; y++) {
for(int x=0; x<width-1; x++) {
double accum = 0.0;
for(int c=0; c<dim; c++) {
accum += abs(joint.at<double>(y, (x+1)*dim+c) - joint.at<double>(y, x*dim+c));
}
dctx.at<double>(y, x) = 1.0 + ratio * accum;
}
}
for(int x=0; x<width; x++) {
for(int y=0; y<height-1; y++) {
double accum = 0.0;
for(int c=0; c<dim; c++) {
accum += abs(joint.at<double>(y+1, x*dim+c) - joint.at<double>(y, x*dim+c));
}
dcty.at<double>(y, x) = 1.0 + ratio * accum;
}
}
// Apply recursive folter maxiter times
img.convertTo(out, CV_MAKETYPE(CV_64F, dim));
for(int i=0; i<maxiter; i++) {
double sigma_H = sigma_s * sqrt(3.0) * pow(2.0, maxiter - i - 1) / sqrt(pow(4.0, maxiter) - 1.0);
recursiveFilterHorizontal(out, dctx, sigma_H);
recursiveFilterVertical(out, dcty, sigma_H);
}
}
// Main function
int main(int argc, char** argv) {
// Check arguments
if(argc <= 1) {
cout << "usage: DomainTransformFiltering.exe [input_image] ([sigma_s] [sigma_r] [maxiter])" << endl;
return -1;
}
// Load image
cv::Mat img = cv::imread(argv[1], CV_LOAD_IMAGE_COLOR);
if(img.empty()) {
cout << "Failed to load image "" << argv[1] << """ << endl;
return -1;
}
// change depth
img.convertTo(img, CV_64FC3, 1.0 / 255.0);
// Parameter set
const double sigma_s = argc <= 2 ? 25.0 : atof(argv[2]);
const double sigma_r = argc <= 3 ? 0.1 : atof(argv[3]);
const int maxiter = argc <= 4 ? 10 : atoi(argv[4]);
cout << "[ Parameters ]" << endl;
cout << " * sigma_s = " << sigma_s << endl;
cout << " * sigma_r = " << sigma_r << endl;
cout << " * maxiter = " << maxiter << endl;
cout << endl;
// Call domain transform filter
CLOCK_START
cv::Mat out;
domainTransformFilter(img, out, img, sigma_s, sigma_r, maxiter);
CLOCK_END
// Show results
cv::imshow("Input", img);
cv::imshow("Output", out);
cv::waitKey(0);
cv::destroyAllWindows();
}
今回の記事は以上です。最後までお読みいただきありがとうございました。